wait.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /* Copyright (C) 1991-1994,1996-2001,2003,2004,2005
  2. Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. /*
  17. * POSIX Standard: 3.2.1 Wait for Process Termination <sys/wait.h>
  18. */
  19. #ifndef _SYS_WAIT_H
  20. #define _SYS_WAIT_H 1
  21. #include <features.h>
  22. __BEGIN_DECLS
  23. #include <signal.h>
  24. #include <sys/resource.h>
  25. /* These macros could also be defined in <stdlib.h>. */
  26. #if !defined _STDLIB_H || !defined __USE_XOPEN
  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; }) \
  36. { .__in = (status) }).__i))
  37. # else
  38. # define __WAIT_INT(status) (*(__const 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 void *
  46. # define __WAIT_STATUS_DEFN void *
  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. # if 0 /*def __WIFCONTINUED*/
  70. # define WIFCONTINUED(status) __WIFCONTINUED(__WAIT_INT(status))
  71. # endif
  72. #endif /* <stdlib.h> not included. */
  73. #ifdef __USE_BSD
  74. # define WCOREFLAG __WCOREFLAG
  75. # define WCOREDUMP(status) __WCOREDUMP(__WAIT_INT(status))
  76. # define W_EXITCODE(ret, sig) __W_EXITCODE(ret, sig)
  77. # define W_STOPCODE(sig) __W_STOPCODE(sig)
  78. #endif
  79. /* The following values are used by the `waitid' function. */
  80. #if defined __USE_SVID || defined __USE_XOPEN
  81. typedef enum
  82. {
  83. P_ALL, /* Wait for any child. */
  84. P_PID, /* Wait for specified process. */
  85. P_PGID /* Wait for members of process group. */
  86. } idtype_t;
  87. #endif
  88. /* Wait for a child to die. When one does, put its status in *STAT_LOC
  89. and return its process ID. For errors, return (pid_t) -1.
  90. This function is a cancellation point and therefore not marked with
  91. __THROW. */
  92. extern __pid_t wait (__WAIT_STATUS __stat_loc);
  93. #ifdef __USE_BSD
  94. /* Special values for the PID argument to `waitpid' and `wait4'. */
  95. # define WAIT_ANY (-1) /* Any process. */
  96. # define WAIT_MYPGRP 0 /* Any process in my process group. */
  97. #endif
  98. /* Wait for a child matching PID to die.
  99. If PID is greater than 0, match any process whose process ID is PID.
  100. If PID is (pid_t) -1, match any process.
  101. If PID is (pid_t) 0, match any process with the
  102. same process group as the current process.
  103. If PID is less than -1, match any process whose
  104. process group is the absolute value of PID.
  105. If the WNOHANG bit is set in OPTIONS, and that child
  106. is not already dead, return (pid_t) 0. If successful,
  107. return PID and store the dead child's status in STAT_LOC.
  108. Return (pid_t) -1 for errors. If the WUNTRACED bit is
  109. set in OPTIONS, return status for stopped children; otherwise don't.
  110. This function is a cancellation point and therefore not marked with
  111. __THROW. */
  112. extern __pid_t waitpid (__pid_t __pid, int *__stat_loc, int __options);
  113. libc_hidden_proto(waitpid)
  114. #if defined __USE_SVID || defined __USE_XOPEN
  115. # define __need_siginfo_t
  116. # include <bits/siginfo.h>
  117. /* Wait for a childing matching IDTYPE and ID to change the status and
  118. place appropriate information in *INFOP.
  119. If IDTYPE is P_PID, match any process whose process ID is ID.
  120. If IDTYPE is P_PGID, match any process whose process group is ID.
  121. If IDTYPE is P_ALL, match any process.
  122. If the WNOHANG bit is set in OPTIONS, and that child
  123. is not already dead, clear *INFOP and return 0. If successful, store
  124. exit code and status in *INFOP.
  125. This function is a cancellation point and therefore not marked with
  126. __THROW. */
  127. extern int waitid (idtype_t __idtype, __id_t __id, siginfo_t *__infop,
  128. int __options);
  129. #endif
  130. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  131. /* This being here makes the prototypes valid whether or not
  132. we have already included <sys/resource.h> to define `struct rusage'. */
  133. struct rusage;
  134. /* Wait for a child to exit. When one does, put its status in *STAT_LOC and
  135. return its process ID. For errors return (pid_t) -1. If USAGE is not
  136. nil, store information about the child's resource usage there. If the
  137. WUNTRACED bit is set in OPTIONS, return status for stopped children;
  138. otherwise don't. */
  139. extern __pid_t wait3 (__WAIT_STATUS __stat_loc, int __options,
  140. struct rusage * __usage) __THROW;
  141. #endif
  142. #ifdef __USE_BSD
  143. /* This being here makes the prototypes valid whether or not
  144. we have already included <sys/resource.h> to define `struct rusage'. */
  145. struct rusage;
  146. /* PID is like waitpid. Other args are like wait3. */
  147. extern __pid_t wait4 (__pid_t __pid, __WAIT_STATUS __stat_loc, int __options,
  148. struct rusage *__usage) __THROW;
  149. libc_hidden_proto(wait4)
  150. #endif /* Use BSD. */
  151. __END_DECLS
  152. #endif /* sys/wait.h */