diff options
Diffstat (limited to 'toys/pending')
-rw-r--r-- | toys/pending/watchdog.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toys/pending/watchdog.c b/toys/pending/watchdog.c index d1279bd4..ea29d02e 100644 --- a/toys/pending/watchdog.c +++ b/toys/pending/watchdog.c @@ -38,6 +38,7 @@ void watchdog_main(void) { if (!FLAG(F) && daemon(1, 1)) perror_exit("failed to daemonize"); xsignal(SIGTERM, safe_shutdown); + xsignal(SIGINT, safe_shutdown); xioctl(TT.fd = xopen(*toys.optargs, O_WRONLY), WDIOC_SETTIMEOUT, &TT.T); // Now that we've got the watchdog device open, kick it periodically. |