mirror of https://github.com/nodejs/node.git
7 lines
169 B
JavaScript
7 lines
169 B
JavaScript
|
function tmp() {}
|
||
|
process.addListener("SIGINT", tmp);
|
||
|
process.removeListener("SIGINT", tmp);
|
||
|
setInterval(function () {
|
||
|
process.stdout.write('keep alive\n');
|
||
|
}, 1000);
|