1 #ifndef __LUNAIX_TYPES_H
2 #define __LUNAIX_TYPES_H
6 #define PROCTERM 0x10000
7 #define PROCSTOP 0x20000
11 #define WEXITSTATUS(wstatus) ((wstatus & 0xffff))
12 #define WIFSTOPPED(wstatus) ((wstatus & PROCSTOP))
13 #define WIFEXITED(wstatus) \
14 ((wstatus & PROCTERM) && ((short)WEXITSTATUS(wstatus) >= 0))
16 typedef int32_t pid_t;
18 #endif /* __LUNAIX_TYPES_H */