wait.h 422 B

12345678910111213
  1. #ifndef _BITS_SYS_WAIT_H
  2. #define _BITS_SYS_WAIT_H
  3. #define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
  4. #define WTERMSIG(s) ((s) & 0x7f)
  5. #define WSTOPSIG(s) WEXITSTATUS(s)
  6. #define WCOREDUMP(s) ((s) & 0x80)
  7. #define WIFEXITED(s) (!WTERMSIG(s))
  8. #define WIFSTOPPED(s) ((short)((((s)&0xffff)*0x10001)>>8) > 0x7f00)
  9. #define WIFSIGNALED(s) (((s)&0xffff)-1U < 0xffu)
  10. #define WIFCONTINUED(s) ((s) == 0xffff)
  11. #endif /* _BITS_SYS_WAIT_H */