diff options
-rw-r--r-- | init/init.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/init/init.c b/init/init.c index 68a59d88e..f7eb8f34b 100644 --- a/init/init.c +++ b/init/init.c | |||
@@ -97,10 +97,16 @@ static const char *const environment[] = { | |||
97 | static void delete_init_action(struct init_action *a); | 97 | static void delete_init_action(struct init_action *a); |
98 | static void halt_reboot_pwoff(int sig) ATTRIBUTE_NORETURN; | 98 | static void halt_reboot_pwoff(int sig) ATTRIBUTE_NORETURN; |
99 | 99 | ||
100 | /* TODO: move to libbb? */ | 100 | static void waitfor(pid_t pid) |
101 | static int waitfor(pid_t runpid) | ||
102 | { | 101 | { |
103 | return safe_waitpid(runpid, NULL, 0); | 102 | /* waitfor(run(x)): protect against failed fork inside run() */ |
103 | if (pid <= 0) | ||
104 | return; | ||
105 | |||
106 | /* Wait for any child (prevent zombies from exiting orphaned processes) | ||
107 | * but exit the loop only when specified one has exited. */ | ||
108 | while (wait(NULL) != pid) | ||
109 | continue; | ||
104 | } | 110 | } |
105 | 111 | ||
106 | static void loop_forever(void) ATTRIBUTE_NORETURN; | 112 | static void loop_forever(void) ATTRIBUTE_NORETURN; |