summaryrefslogtreecommitdiff
path: root/benchmark/misc/set-immediate-depth.js
blob: 12b9cdc7e6fd65525381a6ac246dc4c3f01d0771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'use strict';

const common = require('../common.js');
const bench = common.createBenchmark(main, {
  millions: [10]
});

function main(conf) {
  const N = +conf.millions * 1e6;
  let n = N;

  process.on('exit', function() {
    bench.end(N / 1e6);
  });

  bench.start();
  setImmediate(onNextTick);
  function onNextTick() {
    if (--n)
      setImmediate(onNextTick);
  }
}