Browse Source

windows: enable watching signals with process.on('SIGXYZ')

This reverts commit ea1cba6246.

The offending commit was intended to land on the v0.8 branch only, but
it accidentally got merged at some point.

Closes #5054.
v0.10.1-release
Bert Belder 12 years ago
parent
commit
bf83251eea
  1. 4
      src/node.js

4
src/node.js

@ -733,10 +733,6 @@
}; };
startup.processSignalHandlers = function() { startup.processSignalHandlers = function() {
// Not supported on Windows.
if (process.platform === 'win32')
return;
// Load events module in order to access prototype elements on process like // Load events module in order to access prototype elements on process like
// process.addListener. // process.addListener.
var signalWraps = {}; var signalWraps = {};

Loading…
Cancel
Save