summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--state.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/state.c b/state.c
index bba5966..b941634 100644
--- a/state.c
+++ b/state.c
@@ -15,6 +15,8 @@
#include <sys/reboot.h>
#include <stdlib.h>
#include <unistd.h>
+#include <sys/types.h>
+#include <signal.h>
#include "procd.h"
#include "syslog.h"
@@ -75,6 +77,14 @@ static void state_enter(void)
break;
case STATE_HALT:
+ LOG("- SIGTERM processes -\n");
+ kill(-1, SIGTERM);
+ sync();
+ sleep(1);
+ LOG("- SIGKILL processes -\n");
+ kill(-1, SIGKILL);
+ sync();
+ sleep(1);
LOG("- reboot -\n");
reboot(reboot_event);
break;