2 Copyright © 2002-2004, The AROS Development Team.
12 #include <sys/types.h>
15 #define WNOHANG 0x00000001
16 #define WUNTRACED 0x00000002
17 #define WSTOPPED WUNTRACED
18 #define WEXITED 0x00000004
19 #define WCONTINUED 0x00000008
21 pid_t
wait(int *status
);
22 pid_t
waitpid(pid_t pid
, int *status
, int options
);
25 //pid_t wait3(int *, int, struct rusage *);
26 //pid_t wait4(pid_t, int *, int, struct rusage *);
28 #endif /* SYS_WAIT_H_ */