summaryrefslogtreecommitdiff
path: root/benchmark
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-10-06 15:02:27 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-10-06 15:02:27 -0700
commitf018be3b5f6dad3a92cf41706ad5ed74dc221f6e (patch)
treef8895aedf4a1a0ae22b4c449fdca0a4a900f40dc /benchmark
parentc344fbc2852adfa495c0701fdf0e577cddfd6305 (diff)
downloadnode-new-f018be3b5f6dad3a92cf41706ad5ed74dc221f6e.tar.gz
Print libuv counters after http_simple exits
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/http_simple.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/benchmark/http_simple.js b/benchmark/http_simple.js
index cac406ce7f..120c2050cc 100644
--- a/benchmark/http_simple.js
+++ b/benchmark/http_simple.js
@@ -110,3 +110,6 @@ server.listen(port, function () {
console.log('Listening at http://127.0.0.1:'+port+'/');
});
+process.on('exit', function() {
+ console.error('libuv counters', process.uvCounters());
+});