exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / sys_wait.in.h
blob0d87631c0db4835a1956cd026faebe563b402215
1 /* A POSIX-like <sys/wait.h>.
2 Copyright (C) 2001-2003, 2005-2024 Free Software Foundation, Inc.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
9 This file is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 #ifndef _@GUARD_PREFIX@_SYS_WAIT_H
20 #if __GNUC__ >= 3
21 @PRAGMA_SYSTEM_HEADER@
22 #endif
23 @PRAGMA_COLUMNS@
25 /* The include_next requires a split double-inclusion guard. */
26 #if !(defined _WIN32 && ! defined __CYGWIN__)
27 # @INCLUDE_NEXT@ @NEXT_SYS_WAIT_H@
28 #endif
30 #ifndef _@GUARD_PREFIX@_SYS_WAIT_H
31 #define _@GUARD_PREFIX@_SYS_WAIT_H
33 /* This file uses GNULIB_POSIXCHECK, HAVE_RAW_DECL_*. */
34 #if !_GL_CONFIG_H_INCLUDED
35 #error "Please include config.h first."
36 #endif
38 /* Get pid_t. */
39 #include <sys/types.h>
42 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */
44 /* The definition of _GL_WARN_ON_USE is copied here. */
47 #if !(defined _WIN32 && ! defined __CYGWIN__)
48 /* Unix API. */
50 /* The following macros apply to an argument x, that is a status of a process,
51 as returned by waitpid().
52 On nearly all systems, including Linux/x86, WEXITSTATUS are bits 15..8 and
53 WTERMSIG are bits 7..0, while BeOS uses the opposite. Therefore programs
54 have to use the abstract macros. */
56 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
57 is true. */
58 # ifndef WIFSIGNALED
59 # define WIFSIGNALED(x) (WTERMSIG (x) != 0 && WTERMSIG(x) != 0x7f)
60 # endif
61 # ifndef WIFEXITED
62 # define WIFEXITED(x) (WTERMSIG (x) == 0)
63 # endif
64 # ifndef WIFSTOPPED
65 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f)
66 # endif
68 /* The termination signal. Only to be accessed if WIFSIGNALED(x) is true. */
69 # ifndef WTERMSIG
70 # define WTERMSIG(x) ((x) & 0x7f)
71 # endif
73 /* The exit status. Only to be accessed if WIFEXITED(x) is true. */
74 # ifndef WEXITSTATUS
75 # define WEXITSTATUS(x) (((x) >> 8) & 0xff)
76 # endif
78 /* The stopping signal. Only to be accessed if WIFSTOPPED(x) is true. */
79 # ifndef WSTOPSIG
80 # define WSTOPSIG(x) (((x) >> 8) & 0x7f)
81 # endif
83 /* True if the process dumped core. Not standardized by POSIX. */
84 # ifndef WCOREDUMP
85 # define WCOREDUMP(x) ((x) & 0x80)
86 # endif
88 #else
89 /* Native Windows API. */
91 # include <signal.h> /* for SIGTERM */
93 /* The following macros apply to an argument x, that is a status of a process,
94 as returned by waitpid() or, equivalently, _cwait() or GetExitCodeProcess().
95 This value is simply an 'int', not composed of bit fields. */
97 /* When an unhandled fatal signal terminates a process, the exit code is 3. */
98 # define WIFSIGNALED(x) ((x) == 3)
99 # define WIFEXITED(x) ((x) != 3)
100 # define WIFSTOPPED(x) 0
102 /* The signal that terminated a process is not known posthum. */
103 # define WTERMSIG(x) SIGTERM
105 # define WEXITSTATUS(x) (x)
107 /* There are no stopping signals. */
108 # define WSTOPSIG(x) 0
110 /* There are no core dumps. */
111 # define WCOREDUMP(x) 0
113 #endif
116 /* Declarations of functions. */
118 #if @GNULIB_WAITPID@
119 # if defined _WIN32 && ! defined __CYGWIN__
120 _GL_FUNCDECL_SYS (waitpid, pid_t, (pid_t pid, int *statusp, int options));
121 # endif
122 /* Need to cast, because on Cygwin, the second parameter is
123 __wait_status_ptr_t statusp. */
124 _GL_CXXALIAS_SYS_CAST (waitpid, pid_t, (pid_t pid, int *statusp, int options));
125 _GL_CXXALIASWARN (waitpid);
126 #elif defined GNULIB_POSIXCHECK
127 # undef waitpid
128 # if HAVE_RAW_DECL_WAITPID
129 _GL_WARN_ON_USE (waitpid, "waitpid is unportable - "
130 "use gnulib module sys_wait for portability");
131 # endif
132 #endif
135 #endif /* _@GUARD_PREFIX@_SYS_WAIT_H */
136 #endif /* _@GUARD_PREFIX@_SYS_WAIT_H */