|
|
|
'use strict';
|
|
|
|
|
|
|
|
const common = require('../common');
|
|
|
|
const assert = require('assert');
|
|
|
|
const spawn = require('child_process').spawn;
|
|
|
|
|
|
|
|
if (common.isWindows) {
|
|
|
|
common.skip('Win32 doesn\'t have signals, just a kind of ' +
|
|
|
|
'emulation, insufficient for this test to apply.');
|
process: fix regression in unlistening signals
When the last signal listener is removed, the signal wrap should be
closed, restoring the default signal handling behaviour. This is done in
a (patched) process.removeListener(). However, events.removeAllListeners
has an optimization to avoid calling removeListener() if there are no
listeners for the 'removeListener' event, introduced in 56668f54d1. That
caused the following code to fail to terminate:
process.stdin.resume();
function listener() {};
process.on('SIGINT', listener);
process.removeAllListeners('SIGINT');
process.kill(process.pid, 'SIGINT')
while the following will terminate:
process.stdin.resume();
function listener() {};
process.on('SIGINT', listener);
process.removeListener('SIGINT', listener);
process.kill(process.pid, 'SIGINT')
Replace the method patching with use of the 'newListener' and
'removeListener' events, which will fire no matter which methods are
used to add or remove listeners.
PR-URL: https://github.com/iojs/io.js/pull/687
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
10 years ago
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (process.argv[2] !== '--do-test') {
|
|
|
|
// We are the master, fork a child so we can verify it exits with correct
|
|
|
|
// status.
|
|
|
|
process.env.DOTEST = 'y';
|
|
|
|
var child = spawn(process.execPath, [__filename, '--do-test']);
|
|
|
|
|
|
|
|
child.once('exit', common.mustCall(function(code, signal) {
|
process: fix regression in unlistening signals
When the last signal listener is removed, the signal wrap should be
closed, restoring the default signal handling behaviour. This is done in
a (patched) process.removeListener(). However, events.removeAllListeners
has an optimization to avoid calling removeListener() if there are no
listeners for the 'removeListener' event, introduced in 56668f54d1. That
caused the following code to fail to terminate:
process.stdin.resume();
function listener() {};
process.on('SIGINT', listener);
process.removeAllListeners('SIGINT');
process.kill(process.pid, 'SIGINT')
while the following will terminate:
process.stdin.resume();
function listener() {};
process.on('SIGINT', listener);
process.removeListener('SIGINT', listener);
process.kill(process.pid, 'SIGINT')
Replace the method patching with use of the 'newListener' and
'removeListener' events, which will fire no matter which methods are
used to add or remove listeners.
PR-URL: https://github.com/iojs/io.js/pull/687
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
10 years ago
|
|
|
assert.equal(signal, 'SIGINT');
|
|
|
|
}));
|
process: fix regression in unlistening signals
When the last signal listener is removed, the signal wrap should be
closed, restoring the default signal handling behaviour. This is done in
a (patched) process.removeListener(). However, events.removeAllListeners
has an optimization to avoid calling removeListener() if there are no
listeners for the 'removeListener' event, introduced in 56668f54d1. That
caused the following code to fail to terminate:
process.stdin.resume();
function listener() {};
process.on('SIGINT', listener);
process.removeAllListeners('SIGINT');
process.kill(process.pid, 'SIGINT')
while the following will terminate:
process.stdin.resume();
function listener() {};
process.on('SIGINT', listener);
process.removeListener('SIGINT', listener);
process.kill(process.pid, 'SIGINT')
Replace the method patching with use of the 'newListener' and
'removeListener' events, which will fire no matter which methods are
used to add or remove listeners.
PR-URL: https://github.com/iojs/io.js/pull/687
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
10 years ago
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
process.on('SIGINT', function() {
|
|
|
|
// Remove all handlers and kill ourselves. We should terminate by SIGINT
|
|
|
|
// now that we have no handlers.
|
|
|
|
process.removeAllListeners('SIGINT');
|
|
|
|
process.kill(process.pid, 'SIGINT');
|
|
|
|
});
|
|
|
|
|
|
|
|
// Signal handlers aren't sufficient to keep node alive, so resume stdin
|
|
|
|
process.stdin.resume();
|
|
|
|
|
|
|
|
// Demonstrate that signals are being handled
|
|
|
|
process.kill(process.pid, 'SIGINT');
|