2 * Acess2 POSIX Emulation
3 * - By John Hodge (thePowersGang)
8 #ifndef _LIBPOSIX__SYS__WAIT_H_
9 #define _LIBPOSIX__SYS__WAIT_H_
13 #define WUNTRACED 0x02
15 // POSIX, status values
16 #define WEXITSTATUS(v) v
17 #define WIFCONTINUED(v) 0
19 // POSIX/XSI, waitid(options)
22 #define WCONTINUED 0x40
25 // POSIX/XSI, idtype_t
34 extern pid_t wait(int *);
36 //extern int waitid(idtype_t, id_t, siginfo_t *, int);
38 extern pid_t waitpid(pid_t, int *, int);