mirror of https://github.com/lukechilds/node.git
Ben Noordhuis
13 years ago
1 changed files with 17 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||
// run with `time node benchmark/next-tick.js`
|
|||
var assert = require('assert'); |
|||
|
|||
var N = 1e7; |
|||
var n = 0; |
|||
|
|||
process.on('exit', function() { |
|||
assert.equal(n, N); |
|||
}); |
|||
|
|||
function cb() { |
|||
n++; |
|||
} |
|||
|
|||
for (var i = 0; i < N; ++i) { |
|||
process.nextTick(cb); |
|||
} |
Loading…
Reference in new issue