# include <sys/select.h>
#endif // HAVE_SYS_SELECT_H
+#ifdef HAVE_SYS_WAIT_H
+# include <sys/wait.h>
+#endif // HAVE_SYS_WAIT_H
+
#include "gettext.h"
#define _(str) gettext(str)
}
openbox->restart();
break;
+ case SIGCLD:
+ wait(NULL);
+ break;
+
case SIGHUP:
case SIGINT:
case SIGTERM:
sigaction(SIGTERM, &action, (struct sigaction *) 0);
sigaction(SIGINT, &action, (struct sigaction *) 0);
sigaction(SIGHUP, &action, (struct sigaction *) 0);
+ sigaction(SIGCLD, &action, (struct sigaction *) 0);
+
+ // anything that died while we were restarting won't give us a SIGCLD
+ while (waitpid(-1, NULL, WNOHANG) > 0);
otk::Timer::initialize();
otk::Property::initialize();