aboutsummaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-03-07 07:41:42 +0000
committerErik Andersen <andersen@codepoet.org>2000-03-07 07:41:42 +0000
commit246cc6dddd3df2164e8a925ebd8e9a7bba379253 (patch)
tree0b9f317c6b6fdebad4f90fbfde5565e195076ea4 /init
parente916d24805b4a191bc08d2ee31c9247a30f9bc1e (diff)
downloadbusybox-246cc6dddd3df2164e8a925ebd8e9a7bba379253.tar.gz
Wrote killall.
Adjusted mount, ps, utility.c, etc to handle my nifty new kernel patches the allow busybox to run perfectly without /proc. -Erik
Diffstat (limited to 'init')
-rw-r--r--init/halt.c2
-rw-r--r--init/poweroff.c2
-rw-r--r--init/reboot.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/init/halt.c b/init/halt.c
index d61c38760..f2c9828d4 100644
--- a/init/halt.c
+++ b/init/halt.c
@@ -27,5 +27,5 @@
extern int halt_main(int argc, char **argv)
{
/* don't assume init's pid == 1 */
- exit(kill(findInitPid(), SIGUSR1));
+ exit(kill(findPidByName("init"), SIGUSR1));
}
diff --git a/init/poweroff.c b/init/poweroff.c
index 7f9abf14a..14dc2f5b9 100644
--- a/init/poweroff.c
+++ b/init/poweroff.c
@@ -27,5 +27,5 @@
extern int poweroff_main(int argc, char **argv)
{
/* don't assume init's pid == 1 */
- exit(kill(findInitPid(), SIGUSR2));
+ exit(kill(findPidByName("init"), SIGUSR2));
}
diff --git a/init/reboot.c b/init/reboot.c
index f782fa1e6..fc01ea004 100644
--- a/init/reboot.c
+++ b/init/reboot.c
@@ -27,7 +27,7 @@
extern int reboot_main(int argc, char **argv)
{
/* don't assume init's pid == 1 */
- exit(kill(findInitPid(), SIGINT));
+ exit(kill(findPidByName("init"), SIGINT));
}
/*