summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/openbox.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/openbox.cc b/src/openbox.cc
index 6b5251b5..e9d12500 100644
--- a/src/openbox.cc
+++ b/src/openbox.cc
@@ -60,14 +60,16 @@ void Openbox::signalHandler(int signal)
switch (signal) {
case SIGHUP:
// XXX: Do something with HUP? Really shouldn't, we get this when X shuts
- // down and hangs-up on us.
+ // down and hangs-up on us. we also get a SIGPIPE.
+ printf("Caught HUP signal. Restarting.\n");
+ instance->restart();
+ break;
case SIGINT:
case SIGTERM:
case SIGPIPE:
printf("Caught signal %d. Exiting.\n", signal);
instance->shutdown();
-
break;
case SIGFPE:
case SIGSEGV: