aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h
index f35f85c33..fef8fe2e0 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -587,9 +587,9 @@ pid_t xspawn(char **argv);
587 * if (rc < 0) bb_perror_msg("%s", argv[0]); 587 * if (rc < 0) bb_perror_msg("%s", argv[0]);
588 * if (rc > 0) bb_error_msg("exit code: %d", rc); 588 * if (rc > 0) bb_error_msg("exit code: %d", rc);
589 */ 589 */
590int safe_waitpid(int pid, int *wstat, int options);
590int wait4pid(int pid); 591int wait4pid(int pid);
591int wait_pid(int *wstat, int pid); 592int wait_any_nohang(int *wstat);
592int wait_nohang(int *wstat);
593#define wait_crashed(w) ((w) & 127) 593#define wait_crashed(w) ((w) & 127)
594#define wait_exitcode(w) ((w) >> 8) 594#define wait_exitcode(w) ((w) >> 8)
595#define wait_stopsig(w) ((w) >> 8) 595#define wait_stopsig(w) ((w) >> 8)