summaryrefslogtreecommitdiff
path: root/benchmark/process/memoryUsage.js
blob: 8b5aea871819efcc0c7b37590c0ed2357bbc3559 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict';

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

function main(conf) {
  const n = +conf.n;

  bench.start();
  for (var i = 0; i < n; i++) {
    process.memoryUsage();
  }
  bench.end(n);
}