node/test/fixtures/should_exit.js

7 lines
159 B
JavaScript
Raw Normal View History

function tmp() {}
process.on('SIGINT', tmp);
2010-12-03 09:03:18 +08:00
process.removeListener('SIGINT', tmp);
setInterval(function() {
process.stdout.write('keep alive\n');
}, 1000);