1 #ifndef _LUNAIX_UHDR_WAIT_H
2 #define _LUNAIX_UHDR_WAIT_H
4 #define PEXITTERM 0x100
5 #define PEXITSTOP 0x200
11 #define PEXITNUM(flag, code) (flag | (code & 0xff))
12 #define WEXITSTATUS(wstatus) ((wstatus & 0xff))
13 #define WIFSTOPPED(wstatus) ((wstatus & PEXITSTOP))
14 #define WIFSIGNALED(wstatus) ((wstatus & PEXITSIG))
16 #define WIFEXITED(wstatus) \
17 ((wstatus & PEXITTERM) && ((char)WEXITSTATUS(wstatus) >= 0))
19 #endif /* _LUNAIX_UHDR_WAIT_H */