summaryrefslogtreecommitdiff
path: root/init/reboot.c
diff options
context:
space:
mode:
authorErik Andersen2000-03-07 23:32:17 +0000
committerErik Andersen2000-03-07 23:32:17 +0000
commit2ac2fae728cca8a535b29bdd2fa6899e6f4992f2 (patch)
tree76eb5871ac3cde7d58048aadba75c7f40fab93b7 /init/reboot.c
parentcbd0d625c7466af80f141e0ae24186e15987bf3e (diff)
downloadbusybox-2ac2fae728cca8a535b29bdd2fa6899e6f4992f2.zip
busybox-2ac2fae728cca8a535b29bdd2fa6899e6f4992f2.tar.gz
Fix bugs related to finding PIDs.
-Erik
Diffstat (limited to 'init/reboot.c')
-rw-r--r--init/reboot.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/init/reboot.c b/init/reboot.c
index fc01ea0..2f8b2b4 100644
--- a/init/reboot.c
+++ b/init/reboot.c
@@ -26,8 +26,12 @@
extern int reboot_main(int argc, char **argv)
{
+#ifdef BB_FEATURE_LINUXRC
/* don't assume init's pid == 1 */
exit(kill(findPidByName("init"), SIGINT));
+#else
+ exit(kill(1, SIGINT));
+#endif
}
/*