mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
aeb7d6d168
With priorities. Will be used for process.nextLoop().
15 lines
284 B
JavaScript
15 lines
284 B
JavaScript
process.mixin(require("./common"));
|
|
|
|
var complete = false;
|
|
var idle = new process.IdleWatcher();
|
|
idle.callback = function () {
|
|
complete = true;
|
|
idle.stop();
|
|
};
|
|
idle.setPriority(process.EVMAXPRI);
|
|
idle.start();
|
|
|
|
process.addListener('exit', function () {
|
|
assert.ok(complete);
|
|
});
|