aboutsummaryrefslogtreecommitdiff
path: root/init/halt.c
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-04-07 06:00:07 +0000
committerErik Andersen <andersen@codepoet.org>2000-04-07 06:00:07 +0000
commit825aead68b26a5857330972bd1c6adb9f78047ab (patch)
tree41cb71183c7a9bc0812a51f4a16714e400f63170 /init/halt.c
parent93d6513d9315fa72d7af4ac2435f8c1e243273cb (diff)
downloadbusybox-w32-825aead68b26a5857330972bd1c6adb9f78047ab.tar.gz
busybox-w32-825aead68b26a5857330972bd1c6adb9f78047ab.tar.bz2
busybox-w32-825aead68b26a5857330972bd1c6adb9f78047ab.zip
Patch to make killall actually kill all PIDs with the specified name,
rather then busylooping trying to kill the first one until it dies. Should be more efficient now, and will only send one signal to each specified process. -Erik
Diffstat (limited to 'init/halt.c')
-rw-r--r--init/halt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/halt.c b/init/halt.c
index 81d24cf2d..bcd69b952 100644
--- a/init/halt.c
+++ b/init/halt.c
@@ -28,7 +28,7 @@ extern int halt_main(int argc, char **argv)
28{ 28{
29#ifdef BB_FEATURE_LINUXRC 29#ifdef BB_FEATURE_LINUXRC
30 /* don't assume init's pid == 1 */ 30 /* don't assume init's pid == 1 */
31 exit(kill(findPidByName("init"), SIGUSR1)); 31 exit(kill(*(findPidByName("init")), SIGUSR1));
32#else 32#else
33 exit(kill(1, SIGUSR1)); 33 exit(kill(1, SIGUSR1));
34#endif 34#endif