wait.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* $NetBSD: wait.h,v 1.7 1994/06/29 06:46:23 cgd Exp $ */
  2. /*
  3.  * Copyright (c) 1982, 1986, 1989, 1993
  4.  * The Regents of the University of California.  All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 1. Redistributions of source code must retain the above copyright
  10.  *    notice, this list of conditions and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. All advertising materials mentioning features or use of this software
  15.  *    must display the following acknowledgement:
  16.  * This product includes software developed by the University of
  17.  * California, Berkeley and its contributors.
  18.  * 4. Neither the name of the University nor the names of its contributors
  19.  *    may be used to endorse or promote products derived from this software
  20.  *    without specific prior written permission.
  21.  *
  22.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  23.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  26.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  28.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32.  * SUCH DAMAGE.
  33.  *
  34.  * @(#)wait.h 8.1 (Berkeley) 6/2/93
  35.  */
  36. /*
  37.  * This file holds definitions relevent to the wait4 system call
  38.  * and the alternate interfaces that use it (wait, wait3, waitpid).
  39.  */
  40. /*
  41.  * Macros to test the exit status returned by wait
  42.  * and extract the relevant values.
  43.  */
  44. #ifdef _POSIX_SOURCE
  45. #define _W_INT(i) (i)
  46. #else
  47. #define _W_INT(w) (*(int *)&(w)) /* convert union wait to int */
  48. #define WCOREFLAG 0200
  49. #endif
  50. #define _WSTATUS(x) (_W_INT(x) & 0177)
  51. #define _WSTOPPED 0177 /* _WSTATUS if process is stopped */
  52. #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED)
  53. #define WSTOPSIG(x) (_W_INT(x) >> 8)
  54. #define WIFSIGNALED(x) (_WSTATUS(x) != _WSTOPPED && _WSTATUS(x) != 0)
  55. #define WTERMSIG(x) (_WSTATUS(x))
  56. #define WIFEXITED(x) (_WSTATUS(x) == 0)
  57. #define WEXITSTATUS(x) (_W_INT(x) >> 8)
  58. #ifndef _POSIX_SOURCE
  59. #define WCOREDUMP(x) (_W_INT(x) & WCOREFLAG)
  60. #define W_EXITCODE(ret, sig) ((ret) << 8 | (sig))
  61. #define W_STOPCODE(sig) ((sig) << 8 | _WSTOPPED)
  62. #endif
  63. /*
  64.  * Option bits for the third argument of wait4.  WNOHANG causes the
  65.  * wait to not hang if there are no stopped or terminated processes, rather
  66.  * returning an error indication in this case (pid==0).  WUNTRACED
  67.  * indicates that the caller should receive status about untraced children
  68.  * which stop due to signals.  If children are stopped and a wait without
  69.  * this option is done, it is as though they were still running... nothing
  70.  * about them is returned.
  71.  */
  72. #define WNOHANG 1 /* dont hang in wait */
  73. #define WUNTRACED 2 /* tell about stopped, untraced children */
  74. #ifndef _POSIX_SOURCE
  75. /* POSIX extensions and 4.2/4.3 compatability: */
  76. /*
  77.  * Tokens for special values of the "pid" parameter to wait4.
  78.  */
  79. #define WAIT_ANY (-1) /* any process */
  80. #define WAIT_MYPGRP 0 /* any process in my process group */
  81. #include <machine/endian.h>
  82. /*
  83.  * Deprecated:
  84.  * Structure of the information in the status word returned by wait4.
  85.  * If w_stopval==WSTOPPED, then the second structure describes
  86.  * the information returned, else the first.
  87.  */
  88. union wait {
  89. int w_status; /* used in syscall */
  90. /*
  91.  * Terminated process status.
  92.  */
  93. struct {
  94. #if BYTE_ORDER == LITTLE_ENDIAN 
  95. unsigned int w_Termsig:7, /* termination signal */
  96. w_Coredump:1, /* core dump indicator */
  97. w_Retcode:8, /* exit code if w_termsig==0 */
  98. w_Filler:16; /* upper bits filler */
  99. #endif
  100. #if BYTE_ORDER == BIG_ENDIAN 
  101. unsigned int w_Filler:16, /* upper bits filler */
  102. w_Retcode:8, /* exit code if w_termsig==0 */
  103. w_Coredump:1, /* core dump indicator */
  104. w_Termsig:7; /* termination signal */
  105. #endif
  106. } w_T;
  107. /*
  108.  * Stopped process status.  Returned
  109.  * only for traced children unless requested
  110.  * with the WUNTRACED option bit.
  111.  */
  112. struct {
  113. #if BYTE_ORDER == LITTLE_ENDIAN 
  114. unsigned int w_Stopval:8, /* == W_STOPPED if stopped */
  115. w_Stopsig:8, /* signal that stopped us */
  116. w_Filler:16; /* upper bits filler */
  117. #endif
  118. #if BYTE_ORDER == BIG_ENDIAN 
  119. unsigned int w_Filler:16, /* upper bits filler */
  120. w_Stopsig:8, /* signal that stopped us */
  121. w_Stopval:8; /* == W_STOPPED if stopped */
  122. #endif
  123. } w_S;
  124. };
  125. #define w_termsig w_T.w_Termsig
  126. #define w_coredump w_T.w_Coredump
  127. #define w_retcode w_T.w_Retcode
  128. #define w_stopval w_S.w_Stopval
  129. #define w_stopsig w_S.w_Stopsig
  130. #define WSTOPPED _WSTOPPED
  131. #endif /* _POSIX_SOURCE */
  132. #ifndef KERNEL
  133. #include <sys/types.h>
  134. #include <sys/cdefs.h>
  135. __BEGIN_DECLS
  136. struct rusage; /* forward declaration */
  137. pid_t wait __P_((int *));
  138. pid_t waitpid __P_((pid_t, int *, int));
  139. #ifndef _POSIX_SOURCE
  140. pid_t wait3 __P_((int *, int, void *));
  141. pid_t wait4 __P_((pid_t, int *, int, void *));
  142. #endif
  143. __END_DECLS
  144. #endif