X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fopenbox.c;h=04e07ab628fc1e8d73e70e2d30fbcfced47234bc;hb=b7b4abe0d84b7a820a2ada7a08a0d3d15a86acaf;hp=a4f527b1824690ac6f61731459cc58ece0104dae;hpb=178fdf254d35c7af40ee5f09e7ade9d2fcdc5ec5;p=chaz%2Fopenbox diff --git a/openbox/openbox.c b/openbox/openbox.c index a4f527b1..04e07ab6 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -19,9 +19,6 @@ #ifdef HAVE_FCNTL_H # include #endif -#ifdef HAVE_SYS_SELECT_H -# include -#endif #ifdef HAVE_SIGNAL_H # include #endif @@ -78,7 +75,7 @@ int main(int argc, char **argv) sigemptyset(&sigset); action.sa_handler = dispatch_signal; action.sa_mask = sigset; - action.sa_flags = SA_NOCLDSTOP | SA_NODEFER; + action.sa_flags = SA_NOCLDSTOP; sigaction(SIGUSR1, &action, (struct sigaction *) NULL); sigaction(SIGPIPE, &action, (struct sigaction *) NULL); sigaction(SIGSEGV, &action, (struct sigaction *) NULL);