Browse Source

There's no SIGCHLD on windows

v0.7.4-release
Bert Belder 14 years ago
parent
commit
dcc3508890
  1. 3
      src/node.cc

3
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);

Loading…
Cancel
Save