From d17b86a41f13b9e01b9adef3190a2d3bb022f6a5 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 17 Jan 2003 02:31:46 +0000 Subject: [PATCH] s/SIGCLD/SIGCHLD/ that was Sysv4 shit --- src/openbox.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/openbox.cc b/src/openbox.cc index 49849ea9..9642cd06 100644 --- a/src/openbox.cc +++ b/src/openbox.cc @@ -66,7 +66,7 @@ void Openbox::signalHandler(int signal) openbox->restart(); break; - case SIGCLD: + case SIGCHLD: wait(NULL); break; @@ -121,9 +121,9 @@ Openbox::Openbox(int argc, char **argv) sigaction(SIGTERM, &action, (struct sigaction *) 0); sigaction(SIGINT, &action, (struct sigaction *) 0); sigaction(SIGHUP, &action, (struct sigaction *) 0); - sigaction(SIGCLD, &action, (struct sigaction *) 0); + sigaction(SIGCHLD, &action, (struct sigaction *) 0); - // anything that died while we were restarting won't give us a SIGCLD + // anything that died while we were restarting won't give us a SIGCHLD while (waitpid(-1, NULL, WNOHANG) > 0); otk::Timer::initialize(); -- 2.39.2