summaryrefslogtreecommitdiff
path: root/benchmark/timers/timers-cancel-pooled.js
blob: 47c9fea2cb5b614a9f5711c84d1b180472ba78e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
'use strict';
var common = require('../common.js');
var assert = require('assert');

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

function main(conf) {
  var iterations = +conf.thousands * 1e3;

  var timer = setTimeout(() => {}, 1);
  for (var i = 0; i < iterations; i++) {
    setTimeout(cb, 1);
  }
  var next = timer._idlePrev;
  clearTimeout(timer);

  bench.start();

  for (var j = 0; j < iterations; j++) {
    timer = next;
    next = timer._idlePrev;
    clearTimeout(timer);
  }

  bench.end(iterations / 1e3);
}

function cb() {
  assert(false, 'Timer should not call callback');
}