diff options
author | John Beppu <beppu@lbox.org> | 1999-12-09 22:10:18 +0000 |
---|---|---|
committer | John Beppu <beppu@lbox.org> | 1999-12-09 22:10:18 +0000 |
commit | f95ca97d1bb94307ee0b8ed95d329dc9d6ccec85 (patch) | |
tree | c494de94d27e7d8dc8fdd43b1ca8fe6710e15eda /reboot.c | |
parent | 395b216a2eb70ea2796556c06be01261de993687 (diff) | |
download | busybox-w32-f95ca97d1bb94307ee0b8ed95d329dc9d6ccec85.tar.gz busybox-w32-f95ca97d1bb94307ee0b8ed95d329dc9d6ccec85.tar.bz2 busybox-w32-f95ca97d1bb94307ee0b8ed95d329dc9d6ccec85.zip |
findInitPid() has been implemented and it seems to work.
reboot has been changed to take advantage of findInitPid();
Diffstat (limited to 'reboot.c')
-rw-r--r-- | reboot.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -26,5 +26,6 @@ | |||
26 | extern int | 26 | extern int |
27 | reboot_main(int argc, char ** argv) | 27 | reboot_main(int argc, char ** argv) |
28 | { | 28 | { |
29 | exit( kill(1, SIGUSR2)); | 29 | /* don't assume init's pid == 1 */ |
30 | exit( kill(findInitPid(), SIGUSR2)); | ||
30 | } | 31 | } |