3 |
- |
1 |
|
|
|
2 |
/* /usr/include/sys/wait.h */
|
|
|
3 |
|
|
|
4 |
|
|
|
5 |
typedef u_int __WAIT_STATUS;
|
|
|
6 |
typedef u_int idtype_t;
|
|
|
7 |
typedef u_int __id_t;
|
|
|
8 |
|
|
|
9 |
|
|
|
10 |
__pid_t wait(__WAIT_STATUS stat_loc);
|
|
|
11 |
__pid_t waitpid(__pid_t pid, int *stat_loc, int options);
|
|
|
12 |
|
|
|
13 |
|
|
|
14 |
int waitid(idtype_t idtype, __id_t id, void *infop, int options);
|
|
|
15 |
|
|
|
16 |
|
|
|
17 |
__pid_t wait3(__WAIT_STATUS stat_loc, int options, void *usage);
|
|
|
18 |
__pid_t wait4(__pid_t pid, __WAIT_STATUS stat_loc, int options, void *usage);
|