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

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 and extract the
  42.  * relevant values. Union wait is no supported with pthreads.
  43.  */
  44. #define __W_INT(i) (i)
  45. #define __WSTATUS(x) (__W_INT(x) & 0177)
  46. #define __WSTOPPED 0177 /* __WSTATUS if process is stopped */
  47. #define WIFSTOPPED(x) (__WSTATUS(x) == __WSTOPPED)
  48. #define WSTOPSIG(x) (__W_INT(x) >> 8)
  49. #define WIFSIGNALED(x) (__WSTATUS(x) != __WSTOPPED && __WSTATUS(x) != 0)
  50. #define WTERMSIG(x) (__WSTATUS(x))
  51. #define WIFEXITED(x) (__WSTATUS(x) == 0)
  52. #define WEXITSTATUS(x) (__W_INT(x) >> 8)
  53. #ifndef _POSIX_SOURCE
  54. #define WCOREDUMP(x) (__W_INT(x) & WCOREFLAG)
  55. #define W_EXITCODE(ret, sig) ((ret) << 8 | (sig))
  56. #define W_STOPCODE(sig) ((sig) << 8 | __WSTOPPED)
  57. #endif
  58. /*
  59.  * Option bits for the third argument of wait4.  WNOHANG causes the
  60.  * wait to not hang if there are no stopped or terminated processes, rather
  61.  * returning an error indication in this case (pid==0).  WUNTRACED
  62.  * indicates that the caller should receive status about untraced children
  63.  * which stop due to signals.  If children are stopped and a wait without
  64.  * this option is done, it is as though they were still running... nothing
  65.  * about them is returned.
  66.  */
  67. #define WNOHANG 1 /* dont hang in wait */
  68. #define WUNTRACED 2 /* tell about stopped, untraced children */
  69. #ifndef _POSIX_SOURCE
  70. /* Tokens for special values of the "pid" parameter to wait4. */
  71. #define WAIT_ANY (-1) /* any process */
  72. #define WAIT_MYPGRP 0 /* any process in my process group */
  73. #define WSTOPPED __WSTOPPED
  74. #endif /* _POSIX_SOURCE */
  75. #include <sys/types.h>
  76. #include <sys/cdefs.h>
  77. #ifndef __WAIT_STATUS
  78. #define __WAIT_STATUS int *
  79. #endif
  80. __BEGIN_DECLS
  81. pid_t wait  __P_((int *));
  82. pid_t waitpid  __P_((pid_t, int *, int));
  83. #ifndef _POSIX_SOURCE
  84. pid_t wait3  __P_((int *, int, void *));
  85. pid_t wait4  __P_((pid_t, int *, int, void *));
  86. #endif
  87. __END_DECLS