12345678910111213141516171819202122232425262728293031323334353637 |
- #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
|