aboutsummaryrefslogtreecommitdiff
path: root/init/halt.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-03 21:26:12 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-03 21:26:12 +0000
commit371ca19f5346d626f0c75c8d53aa5e3fb2e85c43 (patch)
treed5d5b8f9aec5eb15d45a43ea6a031dac4e05f39f /init/halt.c
parentf0a4ac82166dbaedeae1d5f92821b700fc8fa17f (diff)
downloadbusybox-371ca19f5346d626f0c75c8d53aa5e3fb2e85c43.tar.gz
Look for either "init" or "linuxrc" processes
Diffstat (limited to 'init/halt.c')
-rw-r--r--init/halt.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/init/halt.c b/init/halt.c
index 10dcb4225..a6fec021b 100644
--- a/init/halt.c
+++ b/init/halt.c
@@ -29,8 +29,11 @@ extern int halt_main(int argc, char **argv)
#ifdef BB_FEATURE_LINUXRC
/* don't assume init's pid == 1 */
pid_t *pid = find_pid_by_name("init");
- if (!pid || *pid<=0)
- error_msg_and_die("no process killed");
+ if (!pid || *pid<=0) {
+ pid_t *pid = find_pid_by_name("linuxrc");
+ if (!pid || *pid<=0)
+ error_msg_and_die("no process killed");
+ }
return(kill(*pid, SIGUSR1));
#else
return(kill(1, SIGUSR1));