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

This reverts commit ea1cba6246a8b1784e22d076139b9244a9ff42f8.

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

Closes #5054.
This commit is contained in:
Bert Belder 2013-03-20 00:16:02 +01:00
parent 8019800c56
commit bf83251eea

View File

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