diff options
Diffstat (limited to 'miscutils/watchdog.c')
-rw-r--r-- | miscutils/watchdog.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/miscutils/watchdog.c b/miscutils/watchdog.c index ee28dc30d..d3a76edf0 100644 --- a/miscutils/watchdog.c +++ b/miscutils/watchdog.c | |||
@@ -31,6 +31,7 @@ static void watchdog_shutdown(int sig UNUSED_PARAM) | |||
31 | { | 31 | { |
32 | static const char V = 'V'; | 32 | static const char V = 'V'; |
33 | 33 | ||
34 | remove_pidfile(CONFIG_PID_FILE_PATH "/watchdog.pid"); | ||
34 | write(3, &V, 1); /* Magic, see watchdog-api.txt in kernel */ | 35 | write(3, &V, 1); /* Magic, see watchdog-api.txt in kernel */ |
35 | if (ENABLE_FEATURE_CLEAN_UP) | 36 | if (ENABLE_FEATURE_CLEAN_UP) |
36 | close(3); | 37 | close(3); |
@@ -95,6 +96,8 @@ int watchdog_main(int argc, char **argv) | |||
95 | stimer_duration, htimer_duration * 1000); | 96 | stimer_duration, htimer_duration * 1000); |
96 | #endif | 97 | #endif |
97 | 98 | ||
99 | write_pidfile(CONFIG_PID_FILE_PATH "/watchdog.pid"); | ||
100 | |||
98 | while (1) { | 101 | while (1) { |
99 | /* | 102 | /* |
100 | * Make sure we clear the counter before sleeping, | 103 | * Make sure we clear the counter before sleeping, |