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

MySQL数据库

开发平台:

Visual C++

  1. /* $NetBSD: wait.h,v 1.11 1996/04/09 20:55:51 cgd Exp $ */
  2. /*
  3.  * Copyright (c) 1982, 1986, 1989, 1993, 1994
  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.2 (Berkeley) 7/10/94
  35.  */
  36. #ifndef _SYS_WAIT_H_
  37. #define _SYS_WAIT_H_
  38. /*
  39.  * This file holds definitions relevent to the wait4 system call
  40.  * and the alternate interfaces that use it (wait, wait3, waitpid).
  41.  */
  42. /*
  43.  * Macros to test the exit status returned by wait
  44.  * and extract the relevant values.
  45.  */
  46. #ifdef _POSIX_SOURCE
  47. #define _W_INT(i) (i)
  48. #else
  49. #define _W_INT(w) (*(int *)&(w)) /* convert union wait to int */
  50. #define WCOREFLAG 0200
  51. #endif
  52. #define _WSTATUS(x) (_W_INT(x) & 0177)
  53. #define _WSTOPPED 0177 /* _WSTATUS if process is stopped */
  54. #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED)
  55. #define WSTOPSIG(x) (_W_INT(x) >> 8)
  56. #define WIFSIGNALED(x) (_WSTATUS(x) != _WSTOPPED && _WSTATUS(x) != 0)
  57. #define WTERMSIG(x) (_WSTATUS(x))
  58. #define WIFEXITED(x) (_WSTATUS(x) == 0)
  59. #define WEXITSTATUS(x) (_W_INT(x) >> 8)
  60. #ifndef _POSIX_SOURCE
  61. #define WCOREDUMP(x) (_W_INT(x) & WCOREFLAG)
  62. #define W_EXITCODE(ret, sig) ((ret) << 8 | (sig))
  63. #define W_STOPCODE(sig) ((sig) << 8 | _WSTOPPED)
  64. #endif
  65. /*
  66.  * Option bits for the third argument of wait4.  WNOHANG causes the
  67.  * wait to not hang if there are no stopped or terminated processes, rather
  68.  * returning an error indication in this case (pid==0).  WUNTRACED
  69.  * indicates that the caller should receive status about untraced children
  70.  * which stop due to signals.  If children are stopped and a wait without
  71.  * this option is done, it is as though they were still running... nothing
  72.  * about them is returned.
  73.  */
  74. #define WNOHANG 1 /* don't hang in wait */
  75. #define WUNTRACED 2 /* tell about stopped, untraced children */
  76. #ifndef _POSIX_SOURCE
  77. /* POSIX extensions and 4.2/4.3 compatability: */
  78. /*
  79.  * Tokens for special values of the "pid" parameter to wait4.
  80.  */
  81. #define WAIT_ANY (-1) /* any process */
  82. #define WAIT_MYPGRP 0 /* any process in my process group */
  83. #include <machine/endian.h>
  84. /*
  85.  * Deprecated:
  86.  * Structure of the information in the status word returned by wait4.
  87.  * If w_stopval==WSTOPPED, then the second structure describes
  88.  * the information returned, else the first.
  89.  */
  90. union wait {
  91. int w_status; /* used in syscall */
  92. /*
  93.  * Terminated process status.
  94.  */
  95. struct {
  96. #if BYTE_ORDER == LITTLE_ENDIAN
  97. unsigned int w_Termsig:7, /* termination signal */
  98. w_Coredump:1, /* core dump indicator */
  99. w_Retcode:8, /* exit code if w_termsig==0 */
  100. w_Filler:16; /* upper bits filler */
  101. #endif
  102. #if BYTE_ORDER == BIG_ENDIAN
  103. unsigned int w_Filler:16, /* upper bits filler */
  104. w_Retcode:8, /* exit code if w_termsig==0 */
  105. w_Coredump:1, /* core dump indicator */
  106. w_Termsig:7; /* termination signal */
  107. #endif
  108. } w_T;
  109. /*
  110.  * Stopped process status.  Returned
  111.  * only for traced children unless requested
  112.  * with the WUNTRACED option bit.
  113.  */
  114. struct {
  115. #if BYTE_ORDER == LITTLE_ENDIAN
  116. unsigned int w_Stopval:8, /* == W_STOPPED if stopped */
  117. w_Stopsig:8, /* signal that stopped us */
  118. w_Filler:16; /* upper bits filler */
  119. #endif
  120. #if BYTE_ORDER == BIG_ENDIAN
  121. unsigned int w_Filler:16, /* upper bits filler */
  122. w_Stopsig:8, /* signal that stopped us */
  123. w_Stopval:8; /* == W_STOPPED if stopped */
  124. #endif
  125. } w_S;
  126. };
  127. #define w_termsig w_T.w_Termsig
  128. #define w_coredump w_T.w_Coredump
  129. #define w_retcode w_T.w_Retcode
  130. #define w_stopval w_S.w_Stopval
  131. #define w_stopsig w_S.w_Stopsig
  132. #define WSTOPPED _WSTOPPED
  133. #endif /* _POSIX_SOURCE */
  134. #ifndef _KERNEL
  135. #include <sys/types.h>
  136. #include <sys/cdefs.h>
  137. __BEGIN_DECLS
  138. struct rusage; /* forward declaration */
  139. pid_t wait __P_((int *));
  140. pid_t waitpid __P_((pid_t, int *, int));
  141. #ifndef _POSIX_SOURCE
  142. pid_t wait3 __P_((int *, int, void *));
  143. pid_t wait4 __P_((pid_t, int *, int, void *));
  144. #endif
  145. __END_DECLS
  146. #endif
  147. #endif /* !_SYS_WAIT_H_ */