1234567891011121314151617181920212223242526272829303132333435363738 |
- #if !defined _SYS_WAIT_H && !defined _STDLIB_H
- # error "Never include <bits/waitflags.h> directly; use <sys/wait.h> instead."
- #endif
- #define WNOHANG 1
- #define WUNTRACED 2
- #define WSTOPPED 2
- #define WEXITED 4
- #define WCONTINUED 8
- #define WNOWAIT 0x01000000
- #define __WNOTHREAD 0x20000000
- #define __WALL 0x40000000
- #define __WCLONE 0x80000000
|