mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
306 B
12 lines
306 B
10 years ago
|
var common = require('../common');
|
||
|
|
||
|
var Timer = process.binding('timer_wrap').Timer;
|
||
|
Timer.now = function() { return ++Timer.now.ticks; };
|
||
|
Timer.now.ticks = 0;
|
||
|
|
||
|
var t = setInterval(function() {}, 1);
|
||
|
var o = { _idleStart: 0, _idleTimeout: 1 };
|
||
|
t.unref.call(o);
|
||
|
|
||
|
setTimeout(clearInterval.bind(null, t), 2);
|