summaryrefslogtreecommitdiff
path: root/benchmark/timers/timers-breadth.js
blob: 02ebd5bb0d082baea8ca9e1cfa9217ff06b305c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict';
const common = require('../common.js');

const bench = common.createBenchmark(main, {
  thousands: [5000],
});

function main(conf) {
  const N = +conf.thousands * 1e3;
  var n = 0;
  bench.start();
  function cb() {
    n++;
    if (n === N)
      bench.end(N / 1e3);
  }
  for (var i = 0; i < N; i++) {
    setTimeout(cb, 1);
  }
}