summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2013-07-11 21:47:25 +0200
committerJohn Crispin <blogic@openwrt.org>2013-07-11 21:47:25 +0200
commit35560c7288919006a3daf57fe4dbfca82be4462f (patch)
tree712d68fc579c91ceb3350206839fca1a65256af0
parent89eec0d61e15bd3c3cd83d24a17fa5894ae984c1 (diff)
downloadunitd-35560c7288919006a3daf57fe4dbfca82be4462f.tar
unitd-35560c7288919006a3daf57fe4dbfca82be4462f.zip
fix wdt cloexec bug
Signed-off-by: John Crispin <blogic@openwrt.org>
-rw-r--r--watchdog.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/watchdog.c b/watchdog.c
index e4b82f5..dc54308 100644
--- a/watchdog.c
+++ b/watchdog.c
@@ -101,12 +101,14 @@ void watchdog_init(void)
DEBUG(1, "Watchdog handover: fd=%s\n", env);
wdt_fd = atoi(env);
unsetenv("WDTFD");
+ fcntl(wdt_fd, F_SETFD, fcntl(wdt_fd, F_GETFD) | FD_CLOEXEC);
} else {
wdt_fd = open("/dev/watchdog", O_WRONLY);
+ if ((getpid() != 1) && (wdt_fd >= 0))
+ fcntl(wdt_fd, F_SETFD, fcntl(wdt_fd, F_GETFD) | FD_CLOEXEC);
}
if (wdt_fd < 0)
return;
- fcntl(wdt_fd, F_SETFD, fcntl(wdt_fd, F_GETFD) | FD_CLOEXEC);
LOG("- watchdog -\n");
watchdog_timeout(30);
watchdog_timeout_cb(&wdt_timeout);