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>
This commit is contained in:
@ -64,7 +64,7 @@ static void shutdown_watchdog(void)
|
||||
|
||||
static void shutdown_on_signal(int sig UNUSED_PARAM)
|
||||
{
|
||||
remove_pidfile(CONFIG_PID_FILE_PATH "/watchdog.pid");
|
||||
remove_pidfile_std_path_and_ext("watchdog");
|
||||
shutdown_watchdog();
|
||||
_exit(EXIT_SUCCESS);
|
||||
}
|
||||
@ -136,7 +136,7 @@ int watchdog_main(int argc UNUSED_PARAM, char **argv)
|
||||
stimer_duration, htimer_duration * 1000);
|
||||
#endif
|
||||
|
||||
write_pidfile(CONFIG_PID_FILE_PATH "/watchdog.pid");
|
||||
write_pidfile_std_path_and_ext("watchdog");
|
||||
|
||||
while (1) {
|
||||
/*
|
||||
|
Reference in New Issue
Block a user