0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/mjsunit/test-signal-handler.js
Ryan Dahl 7a2e784ad7 Module refactor - almost CommonJS compatible now
API change summary:

  * require("/sys.js") becomes require("sys")

  * require("circle.js") becomes require("./circle")

  * process.path.join() becomes require("path").join()
2009-10-31 19:10:30 +01:00

35 lines
585 B
JavaScript

process.mixin(require("./common"));
puts("process.pid: " + process.pid);
var first = 0,
second = 0;
process.addListener('SIGUSR1', function () {
puts("Interrupted by SIGUSR1");
first += 1;
});
process.addListener('SIGUSR1', function () {
second += 1;
setTimeout(function () {
puts("End.");
process.exit(0);
}, 5);
});
i = 0;
setInterval(function () {
puts("running process..." + ++i);
if (i == 5) {
process.kill(process.pid, "SIGUSR1");
}
}, 1);
process.addListener("exit", function () {
assertEquals(1, first);
assertEquals(1, second);
});