]> Dogcows Code - chaz/openbox/blobdiff - src/openbox.cc
windows stay on their desktops
[chaz/openbox] / src / openbox.cc
index aa7fc9f66fd4e44a5b2a8ac786ab297de5d0a8c3..b28decc23a68b65d528ef489158f91c574727bc5 100644 (file)
@@ -63,13 +63,14 @@ void Openbox::signalHandler(int signal)
     instance->restart();
     break;
 
-  case SUGHUP:
+  case SIGHUP:
   case SIGINT:
   case SIGTERM:
   case SIGPIPE:
     printf("Caught signal %d. Exiting.\n", signal);
     instance->shutdown();
     break;
+
   case SIGFPE:
   case SIGSEGV:
     printf("Caught signal %d. Aborting and dumping core.\n", signal);
@@ -109,6 +110,7 @@ Openbox::Openbox(int argc, char **argv)
   action.sa_handler = Openbox::signalHandler;
   action.sa_mask = sigset_t();
   action.sa_flags = SA_NOCLDSTOP | SA_NODEFER;
+  sigaction(SIGUSR1, &action, (struct sigaction *) 0);
   sigaction(SIGPIPE, &action, (struct sigaction *) 0);
   sigaction(SIGSEGV, &action, (struct sigaction *) 0);
   sigaction(SIGFPE, &action, (struct sigaction *) 0);
This page took 0.02016 seconds and 4 git commands to generate.