0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/benchmark/timers/timers-timeout-pooled.js
Jeremiah Senkpiel c74e6fe651 benchmark: add more thorough timers benchmarks
Refs: https://github.com/nodejs/node/issues/9493
PR-URL: https://github.com/nodejs/node/pull/10925
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2017-01-27 14:26:24 -05:00

24 lines
392 B
JavaScript

'use strict';
var common = require('../common.js');
var bench = common.createBenchmark(main, {
thousands: [500],
});
function main(conf) {
var iterations = +conf.thousands * 1e3;
var count = 0;
for (var i = 0; i < iterations; i++) {
setTimeout(cb, 1);
}
bench.start();
function cb() {
count++;
if (count === iterations)
bench.end(iterations / 1e3);
}
}