wait.h 631 B

1234567891011121314151617181920
  1. #ifndef _SYS_WAIT_H
  2. #include <posix/sys/wait.h>
  3. #ifndef _ISOMAC
  4. /* Now define the internal interfaces. */
  5. extern __pid_t __waitpid (__pid_t __pid, int *__stat_loc,
  6. int __options);
  7. libc_hidden_proto (__waitpid)
  8. extern int __waitid (idtype_t idtype, id_t id, siginfo_t *infop, int options);
  9. extern __pid_t __libc_wait (int *__stat_loc);
  10. extern __pid_t __wait (int *__stat_loc);
  11. extern __pid_t __wait3 (int *__stat_loc,
  12. int __options, struct rusage * __usage);
  13. extern __pid_t __wait4 (__pid_t __pid, int *__stat_loc,
  14. int __options, struct rusage *__usage)
  15. attribute_hidden;
  16. libc_hidden_proto (__wait4);
  17. #endif
  18. #endif