summaryrefslogtreecommitdiff
path: root/benchmark/timers/timers-timeout-pooled.js
blob: feaec23237f13dc965bed4bbb837d8d5dab250f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'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);
  }
}