Applied patch from Gennady Feldman to use single-thread instead of forking.
[oweals/busybox.git] / reboot.c
index fc01ea004fe52e67abdf1abbcbfd105bf3e59caf..3e5f2382c1cf363e1205e5452f4fa08598c21486 100644 (file)
--- a/reboot.c
+++ b/reboot.c
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <signal.h>
 
 extern int reboot_main(int argc, char **argv)
 {
+#ifdef BB_FEATURE_LINUXRC
        /* don't assume init's pid == 1 */
-       exit(kill(findPidByName("init"), SIGINT));
+       return(kill(*(find_pid_by_name("init")), SIGINT));
+#else
+       return(kill(1, SIGINT));
+#endif
 }
 
 /*