1 #ifndef __LUNAIX_TYPES_H
2 #define __LUNAIX_TYPES_H
6 #define PEXITTERM 0x100
7 #define PEXITSTOP 0x200
10 #define PEXITNUM(flag, code) (flag | (code & 0xff))
14 #define WEXITSTATUS(wstatus) ((wstatus & 0xff))
15 #define WIFSTOPPED(wstatus) ((wstatus & PEXITSTOP))
16 #define WIFEXITED(wstatus) \
17 ((wstatus & PEXITTERM) && ((char)WEXITSTATUS(wstatus) >= 0))
19 #define WIFSIGNALED(wstatus) ((wstatus & PEXITSIG))
22 typedef int32_t pid_t;
24 #endif /* __LUNAIX_TYPES_H */