1 /* 2 * Copyright 2009-2010 Haiku Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _BSD_SYS_WAIT_H_ 6 #define _BSD_SYS_WAIT_H_ 7 8 9 #include_next <sys/wait.h> 10 11 #include <sys/resource.h> 12 13 14 #ifdef __cplusplus 15 extern "C" { 16 #endif 17 18 pid_t wait3(int *status, int options, struct rusage *rusage); 19 20 pid_t wait4(pid_t pid, int *status, int options, struct rusage *rusage); 21 22 #ifdef __cplusplus 23 } 24 #endif 25 26 #endif /* _BSD_SYS_WAIT_H_ */ 27