wait.h 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /* Copyright (C) 1991, 92, 93, 94, 96, 97, 98 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Library General Public License as
  5. published by the Free Software Foundation; either version 2 of the
  6. License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with the GNU C Library; see the file COPYING.LIB. If not,
  13. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. Boston, MA 02111-1307, USA. */
  15. /*
  16. * POSIX Standard: 3.2.1 Wait for Process Termination <sys/wait.h>
  17. */
  18. #ifndef _SYS_WAIT_H
  19. #define _SYS_WAIT_H 1
  20. #include <features.h>
  21. __BEGIN_DECLS
  22. #include <bits/types.h>
  23. #if defined __USE_XOPEN && !defined pid_t
  24. typedef __pid_t pid_t;
  25. # define pid_t pid_t
  26. #endif
  27. /* This will define the `W*' macros for the flag
  28. bits to `waitpid', `wait3', and `wait4'. */
  29. #include <bits/waitflags.h>
  30. #ifdef __USE_BSD
  31. /* Lots of hair to allow traditional BSD use of `union wait'
  32. as well as POSIX.1 use of `int' for the status word. */
  33. # if defined __GNUC__ && !defined __cplusplus
  34. # define __WAIT_INT(status) \
  35. (__extension__ ({ union { __typeof(status) __in; int __i; } __u; \
  36. __u.__in = (status); __u.__i; }))
  37. # else
  38. # define __WAIT_INT(status) (*(int *) &(status))
  39. # endif
  40. /* This is the type of the argument to `wait'. The funky union
  41. causes redeclarations with ether `int *' or `union wait *' to be
  42. allowed without complaint. __WAIT_STATUS_DEFN is the type used in
  43. the actual function definitions. */
  44. # if !defined __GNUC__ || __GNUC__ < 2 || defined __cplusplus
  45. # define __WAIT_STATUS __ptr_t
  46. # define __WAIT_STATUS_DEFN __ptr_t
  47. # else
  48. /* This works in GCC 2.6.1 and later. */
  49. typedef union
  50. {
  51. union wait *__uptr;
  52. int *__iptr;
  53. } __WAIT_STATUS __attribute__ ((__transparent_union__));
  54. # define __WAIT_STATUS_DEFN int *
  55. #endif
  56. #else /* Don't use BSD. */
  57. # define __WAIT_INT(status) (status)
  58. # define __WAIT_STATUS int *
  59. # define __WAIT_STATUS_DEFN int *
  60. #endif /* Use BSD. */
  61. /* This will define all the `__W*' macros. */
  62. #include <bits/waitstatus.h>
  63. #define WEXITSTATUS(status) __WEXITSTATUS(__WAIT_INT(status))
  64. #define WTERMSIG(status) __WTERMSIG(__WAIT_INT(status))
  65. #define WSTOPSIG(status) __WSTOPSIG(__WAIT_INT(status))
  66. #define WIFEXITED(status) __WIFEXITED(__WAIT_INT(status))
  67. #define WIFSIGNALED(status) __WIFSIGNALED(__WAIT_INT(status))
  68. #define WIFSTOPPED(status) __WIFSTOPPED(__WAIT_INT(status))
  69. #ifdef __USE_BSD
  70. # define WCOREFLAG __WCOREFLAG
  71. # define WCOREDUMP(status) __WCOREDUMP(__WAIT_INT(status))
  72. # define W_EXITCODE(ret, sig) __W_EXITCODE(ret, sig)
  73. # define W_STOPCODE(sig) __W_STOPCODE(sig)
  74. #endif
  75. /* The following values are used by the `waitid' function. */
  76. #if defined __USE_SVID || defined __USE_XOPEN
  77. typedef enum
  78. {
  79. P_ALL, /* Wait for any child. */
  80. P_PID, /* Wait for specified process. */
  81. P_PGID /* Wait for members of process group. */
  82. } idtype_t;
  83. #endif
  84. /* Wait for a child to die. When one does, put its status in *STAT_LOC
  85. and return its process ID. For errors, return (pid_t) -1. */
  86. extern __pid_t __wait __P ((__WAIT_STATUS __stat_loc));
  87. extern __pid_t wait __P ((__WAIT_STATUS __stat_loc));
  88. #ifdef __USE_BSD
  89. /* Special values for the PID argument to `waitpid' and `wait4'. */
  90. # define WAIT_ANY (-1) /* Any process. */
  91. # define WAIT_MYPGRP 0 /* Any process in my process group. */
  92. #endif
  93. /* Wait for a child matching PID to die.
  94. If PID is greater than 0, match any process whose process ID is PID.
  95. If PID is (pid_t) -1, match any process.
  96. If PID is (pid_t) 0, match any process with the
  97. same process group as the current process.
  98. If PID is less than -1, match any process whose
  99. process group is the absolute value of PID.
  100. If the WNOHANG bit is set in OPTIONS, and that child
  101. is not already dead, return (pid_t) 0. If successful,
  102. return PID and store the dead child's status in STAT_LOC.
  103. Return (pid_t) -1 for errors. If the WUNTRACED bit is
  104. set in OPTIONS, return status for stopped children; otherwise don't. */
  105. extern __pid_t waitpid __P ((__pid_t __pid, int *__stat_loc,
  106. int __options));
  107. #if defined __USE_SVID || defined __USE_XOPEN
  108. # define __need_siginfo_t
  109. # include <bits/siginfo.h>
  110. /* Wait for a childing matching IDTYPE and ID to change the status and
  111. place appropriate information in *INFOP.
  112. If IDTYPE is P_PID, match any process whose process ID is ID.
  113. If IDTYPE is P_PGID, match any process whose process group is ID.
  114. If IDTYPE is P_ALL, match any process.
  115. If the WNOHANG bit is set in OPTIONS, and that child
  116. is not already dead, clear *INFOP and return 0. If successful, store
  117. exit code and status in *INFOP. */
  118. extern int waitid __P ((idtype_t __idtype, __id_t __id, siginfo_t *__infop,
  119. int __options));
  120. #endif
  121. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  122. /* This being here makes the prototypes valid whether or not
  123. we have already included <sys/resource.h> to define `struct rusage'. */
  124. struct rusage;
  125. /* Wait for a child to exit. When one does, put its status in *STAT_LOC and
  126. return its process ID. For errors return (pid_t) -1. If USAGE is not
  127. nil, store information about the child's resource usage there. If the
  128. WUNTRACED bit is set in OPTIONS, return status for stopped children;
  129. otherwise don't. */
  130. extern __pid_t wait3 __P ((__WAIT_STATUS __stat_loc,
  131. int __options, struct rusage * __usage));
  132. #endif
  133. #ifdef __USE_BSD
  134. /* This being here makes the prototypes valid whether or not
  135. we have already included <sys/resource.h> to define `struct rusage'. */
  136. struct rusage;
  137. /* PID is like waitpid. Other args are like wait3. */
  138. extern __pid_t wait4 __P ((__pid_t __pid, __WAIT_STATUS __stat_loc,
  139. int __options, struct rusage *__usage));
  140. #endif /* Use BSD. */
  141. __END_DECLS
  142. #endif /* sys/wait.h */