From dcc350889094f66bfe6ca39a704f91490ce2b3e7 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Thu, 25 Nov 2010 01:04:31 +0100 Subject: [PATCH] There's no SIGCHLD on windows --- src/node.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/node.cc b/src/node.cc index cf795b1270..be596304d4 100644 --- a/src/node.cc +++ b/src/node.cc @@ -688,7 +688,10 @@ const char *signo_string(int signo) { #endif SIGNO_CASE(SIGTERM); + +#ifdef SIGCHLD SIGNO_CASE(SIGCHLD); +#endif #ifdef SIGSTKFLT SIGNO_CASE(SIGSTKFLT);