diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-03-17 19:47:52 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-03-17 19:48:39 +0100 |
commit | 5059653882dbd86e3bbf48389f9f81b0fac8cd0a (patch) | |
tree | c485a272add5b3a684f9ac97aad69a7c07aadb85 /miscutils/watchdog.c | |
parent | 2bbd1e1e8ababc480ff5d373847ab98ba0cc23dd (diff) | |
download | busybox-w32-5059653882dbd86e3bbf48389f9f81b0fac8cd0a.tar.gz busybox-w32-5059653882dbd86e3bbf48389f9f81b0fac8cd0a.tar.bz2 busybox-w32-5059653882dbd86e3bbf48389f9f81b0fac8cd0a.zip |
do not duplicate CONFIG_PID_FILE_PATH and ".pid" strings
text data bss dec hex filename
981737 485 7296 989518 f194e busybox_old
981704 485 7296 989485 f192d busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/watchdog.c')
-rw-r--r-- | miscutils/watchdog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/watchdog.c b/miscutils/watchdog.c index 1e9ecc5e8..86600b72f 100644 --- a/miscutils/watchdog.c +++ b/miscutils/watchdog.c | |||
@@ -64,7 +64,7 @@ static void shutdown_watchdog(void) | |||
64 | 64 | ||
65 | static void shutdown_on_signal(int sig UNUSED_PARAM) | 65 | static void shutdown_on_signal(int sig UNUSED_PARAM) |
66 | { | 66 | { |
67 | remove_pidfile(CONFIG_PID_FILE_PATH "/watchdog.pid"); | 67 | remove_pidfile_std_path_and_ext("watchdog"); |
68 | shutdown_watchdog(); | 68 | shutdown_watchdog(); |
69 | _exit(EXIT_SUCCESS); | 69 | _exit(EXIT_SUCCESS); |
70 | } | 70 | } |
@@ -136,7 +136,7 @@ int watchdog_main(int argc UNUSED_PARAM, char **argv) | |||
136 | stimer_duration, htimer_duration * 1000); | 136 | stimer_duration, htimer_duration * 1000); |
137 | #endif | 137 | #endif |
138 | 138 | ||
139 | write_pidfile(CONFIG_PID_FILE_PATH "/watchdog.pid"); | 139 | write_pidfile_std_path_and_ext("watchdog"); |
140 | 140 | ||
141 | while (1) { | 141 | while (1) { |
142 | /* | 142 | /* |