From bf83251eea0060f1c153a5bf46f063692bcc8aea Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Wed, 20 Mar 2013 00:16:02 +0100 Subject: [PATCH] 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. --- src/node.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/node.js b/src/node.js index 86e9df6a87..5e40fab272 100644 --- a/src/node.js +++ b/src/node.js @@ -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 = {};