WAIT.2
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:4k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. ." Copyright (c) 1980 Regents of the University of California.
  2. ." All rights reserved.  The Berkeley software License Agreement
  3. ." specifies the terms and conditions for redistribution.
  4. ."
  5. ." @(#)wait.2 6.2 (Berkeley) 6/30/85
  6. ."
  7. .TH WAIT 2 "June 30, 1985"
  8. .UC 4
  9. .SH NAME
  10. wait, waitpid - wait for process to terminate
  11. .SH SYNOPSIS
  12. .ft B
  13. .nf
  14. #include <sys/types.h>
  15. #include <sys/wait.h>
  16. pid_t wait(int *fIstatusfP)
  17. pid_t waitpid(pid_t fIpidfP, int *fIstatusfP, int fIoptionsfP)
  18. .fi
  19. .SH DESCRIPTION
  20. .B Wait
  21. causes its caller to delay until a signal is received or
  22. one of its child
  23. processes terminates.
  24. If any child has died since the last
  25. .BR wait ,
  26. return is immediate, returning the process id and
  27. exit status of one of the terminated
  28. children.
  29. If there are no children, return is immediate with
  30. the value -1 returned.
  31. .PP
  32. On return from a successful 
  33. .B wait
  34. call, 
  35. .I status
  36. is nonzero, and the high byte of 
  37. .I status
  38. contains the low byte of the argument to
  39. .B exit
  40. supplied by the child process;
  41. the low byte of 
  42. .I status
  43. contains the termination status of the process.
  44. A more precise definition of the
  45. .I status
  46. word is given in
  47. .RI < sys/wait.h >.
  48. If
  49. .B wait
  50. can called with a null pointer argument to indicate that no status need
  51. be returned.
  52. .PP
  53. .B Waitpid
  54. provides an alternate interface for programs
  55. that must not block when collecting the status
  56. of child processes, or that wish to wait for
  57. one particular child.  The pid parameter is
  58. the process ID of the child to wait for, -1
  59. for any child.  The
  60. .I status
  61. parameter is defined as above.  The
  62. .I options
  63. parameter is used to indicate the call should not block if
  64. there are no processes that wish to report status (WNOHANG),
  65. and/or that children of the current process that are stopped
  66. due to a SIGTTIN, SIGTTOU, SIGTSTP, or SIGSTOP signal should also have
  67. their status reported (WUNTRACED).  (Job control is not implemented for
  68. Minix, but these symbold and signals are.)
  69. .PP
  70. When the WNOHANG option is specified and no processes
  71. wish to report status, 
  72. .B waitpid
  73. returns -1 with
  74. .B errno
  75. set to
  76. .BR EAGAIN .
  77. The WNOHANG and WUNTRACED options may be combined by 
  78. .IR or 'ing
  79. the two values.
  80. .SH NOTES
  81. The call
  82. .BI "wait(&" status ")"
  83. is equivalent to
  84. .BI "waitpid(-1, &" status ", 0)fR."
  85. .PP
  86. See
  87. .BR sigaction (2)
  88. for a list of termination statuses (signals);
  89. 0 status indicates normal termination.
  90. A special status (0177) is returned for a stopped process
  91. that has not terminated and can be restarted;
  92. see
  93. .BR ptrace (2).
  94. If the 0200 bit of the termination status
  95. is set,
  96. a core image of the process was produced
  97. by the system.
  98. .PP
  99. If the parent process terminates without
  100. waiting on its children,
  101. the initialization process
  102. (process ID = 1)
  103. inherits the children.
  104. .PP
  105. .I <sys/wait.h>
  106. defines a number of macros that operate on a status word:
  107. .TP 5
  108. .BI "WIFEXITED(" status ")"
  109. True if normal exit.
  110. .TP 5
  111. .BI "WEXITSTATUS(" status ")"
  112. Exit status if the process returned by a normal exit, zero otherwise.
  113. .TP 5
  114. .BI "WTERMSIG(" status ")"
  115. Signal number if the process died by a signal, zero otherwise.
  116. .TP 5
  117. .BI "WIFSIGNALED(" status ")"
  118. True if the process died by a signal.
  119. .TP 5
  120. .BI "WIFSTOPPED(" status ")"
  121. True if the process is stopped.  (Never true under Minix.)
  122. .TP 5
  123. .BI "WSTOPSIG(" status ")"
  124. Signal number of the signal that stopped the process.
  125. .SH "RETURN VALUE
  126. If fBwaitfP returns due to a stopped
  127. or terminated child process, the process ID of the child
  128. is returned to the calling process.  Otherwise, a value of -1
  129. is returned and fBerrnofP is set to indicate the error.
  130. .PP
  131. .B Waitpid
  132. returns -1 if there are no children not previously waited for, if
  133. the process that it wants to wait for doesn't exist, or if
  134. WNOHANG is specified and there are no stopped or exited children.
  135. .SH ERRORS
  136. .B Wait
  137. will fail and return immediately if one or more of the following
  138. are true:
  139. .TP 15
  140. [ECHILD]
  141. The calling process has no existing unwaited-for
  142. child processes.
  143. .TP 15
  144. [EFAULT]
  145. The fIstatusfP argument points to an illegal address.
  146. .TP 15
  147. [EAGAIN]
  148. .B Waitpid
  149. is called with the WNOHANG option and no child has exited yet.
  150. .SH "SEE ALSO"
  151. .BR execve (2),
  152. .BR exit (2),
  153. .BR sigaction (2).