1 /* A GNU-like <signal.h>.
3 Copyright (C) 2006-2011 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 @PRAGMA_SYSTEM_HEADER@
23 #if defined __need_sig_atomic_t || defined __need_sigset_t || defined _GL_ALREADY_INCLUDING_SIGNAL_H || (defined _SIGNAL_H && !defined __SIZEOF_PTHREAD_MUTEX_T)
24 /* Special invocation convention:
25 - Inside glibc header files.
26 - On glibc systems we have a sequence of nested includes
27 <signal.h> -> <ucontext.h> -> <signal.h>.
28 In this situation, the functions are not yet declared, therefore we cannot
29 provide the C++ aliases.
30 - On glibc systems with GCC 4.3 we have a sequence of nested includes
31 <csignal> -> </usr/include/signal.h> -> <sys/ucontext.h> -> <signal.h>.
32 In this situation, some of the functions are not yet declared, therefore
33 we cannot provide the C++ aliases. */
35 # @INCLUDE_NEXT@ @NEXT_SIGNAL_H@
38 /* Normal invocation convention. */
40 #ifndef _@GUARD_PREFIX@_SIGNAL_H
42 #define _GL_ALREADY_INCLUDING_SIGNAL_H
44 /* Define pid_t, uid_t.
45 Also, mingw defines sigset_t not in <signal.h>, but in <sys/types.h>.
46 On Solaris 10, <signal.h> includes <sys/types.h>, which eventually includes
47 us; so include <sys/types.h> now, before the second inclusion guard. */
48 #include <sys/types.h>
50 /* The include_next requires a split double-inclusion guard. */
51 #@INCLUDE_NEXT@ @NEXT_SIGNAL_H@
53 #undef _GL_ALREADY_INCLUDING_SIGNAL_H
55 #ifndef _@GUARD_PREFIX@_SIGNAL_H
56 #define _@GUARD_PREFIX@_SIGNAL_H
58 /* MacOS X 10.3, FreeBSD 6.4, OpenBSD 3.8, OSF/1 4.0, Solaris 2.6 declare
59 pthread_sigmask in <pthread.h>, not in <signal.h>.
60 But avoid namespace pollution on glibc systems.*/
61 #if (@GNULIB_PTHREAD_SIGMASK@ || defined GNULIB_POSIXCHECK) \
62 && ((defined __APPLE__ && defined __MACH__) || defined __FreeBSD__ || defined __OpenBSD__ || defined __osf__ || defined __sun) \
63 && ! defined __GLIBC__
67 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */
69 /* The definition of _GL_ARG_NONNULL is copied here. */
71 /* The definition of _GL_WARN_ON_USE is copied here. */
73 /* On AIX, sig_atomic_t already includes volatile. C99 requires that
74 'volatile sig_atomic_t' ignore the extra modifier, but C89 did not.
75 Hence, redefine this to a non-volatile type as needed. */
76 #if ! @HAVE_TYPE_VOLATILE_SIG_ATOMIC_T@
77 # if !GNULIB_defined_sig_atomic_t
78 typedef int rpl_sig_atomic_t
;
80 # define sig_atomic_t rpl_sig_atomic_t
81 # define GNULIB_defined_sig_atomic_t 1
85 /* A set or mask of signals. */
87 # if !GNULIB_defined_sigset_t
88 typedef unsigned int sigset_t
;
89 # define GNULIB_defined_sigset_t 1
93 /* Define sighandler_t, the type of signal handlers. A GNU extension. */
94 #if !@HAVE_SIGHANDLER_T@
98 # if !GNULIB_defined_sighandler_t
99 typedef void (*sighandler_t
) (int);
100 # define GNULIB_defined_sighandler_t 1
108 #if @GNULIB_SIGNAL_H_SIGPIPE@
110 /* Define SIGPIPE to a value that does not overlap with other signals. */
112 # define GNULIB_defined_SIGPIPE 1
113 /* To actually use SIGPIPE, you also need the gnulib modules 'sigprocmask',
119 /* Maximum signal number + 1. */
121 # if defined __TANDEM
127 #if @GNULIB_PTHREAD_SIGMASK@
128 # if @REPLACE_PTHREAD_SIGMASK@
129 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
130 # undef pthread_sigmask
131 # define pthread_sigmask rpl_pthread_sigmask
133 _GL_FUNCDECL_RPL (pthread_sigmask
, int,
134 (int how
, const sigset_t
*new_mask
, sigset_t
*old_mask
));
135 _GL_CXXALIAS_RPL (pthread_sigmask
, int,
136 (int how
, const sigset_t
*new_mask
, sigset_t
*old_mask
));
138 # if !@HAVE_PTHREAD_SIGMASK@
139 _GL_FUNCDECL_SYS (pthread_sigmask
, int,
140 (int how
, const sigset_t
*new_mask
, sigset_t
*old_mask
));
142 _GL_CXXALIAS_SYS (pthread_sigmask
, int,
143 (int how
, const sigset_t
*new_mask
, sigset_t
*old_mask
));
145 _GL_CXXALIASWARN (pthread_sigmask
);
146 #elif defined GNULIB_POSIXCHECK
147 # undef pthread_sigmask
148 # if HAVE_RAW_DECL_PTHREAD_SIGMASK
149 _GL_WARN_ON_USE (pthread_sigmask
, "pthread_sigmask is not portable - "
150 "use gnulib module pthread_sigmask for portability");
157 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
159 # define raise rpl_raise
161 _GL_FUNCDECL_RPL (raise
, int, (int sig
));
162 _GL_CXXALIAS_RPL (raise
, int, (int sig
));
165 _GL_FUNCDECL_SYS (raise
, int, (int sig
));
167 _GL_CXXALIAS_SYS (raise
, int, (int sig
));
169 _GL_CXXALIASWARN (raise
);
170 #elif defined GNULIB_POSIXCHECK
172 /* Assume raise is always declared. */
173 _GL_WARN_ON_USE (raise
, "raise can crash on native Windows - "
174 "use gnulib module raise for portability");
178 #if @GNULIB_SIGPROCMASK@
179 # if !@HAVE_POSIX_SIGNALBLOCKING@
181 /* Maximum signal number + 1. */
186 /* This code supports only 32 signals. */
187 # if !GNULIB_defined_verify_NSIG_constraint
188 typedef int verify_NSIG_constraint
[NSIG
<= 32 ? 1 : -1];
189 # define GNULIB_defined_verify_NSIG_constraint 1
194 /* Test whether a given signal is contained in a signal set. */
195 # if @HAVE_POSIX_SIGNALBLOCKING@
196 /* This function is defined as a macro on MacOS X. */
197 # if defined __cplusplus && defined GNULIB_NAMESPACE
201 _GL_FUNCDECL_SYS (sigismember
, int, (const sigset_t
*set
, int sig
)
202 _GL_ARG_NONNULL ((1)));
204 _GL_CXXALIAS_SYS (sigismember
, int, (const sigset_t
*set
, int sig
));
205 _GL_CXXALIASWARN (sigismember
);
207 /* Initialize a signal set to the empty set. */
208 # if @HAVE_POSIX_SIGNALBLOCKING@
209 /* This function is defined as a macro on MacOS X. */
210 # if defined __cplusplus && defined GNULIB_NAMESPACE
214 _GL_FUNCDECL_SYS (sigemptyset
, int, (sigset_t
*set
) _GL_ARG_NONNULL ((1)));
216 _GL_CXXALIAS_SYS (sigemptyset
, int, (sigset_t
*set
));
217 _GL_CXXALIASWARN (sigemptyset
);
219 /* Add a signal to a signal set. */
220 # if @HAVE_POSIX_SIGNALBLOCKING@
221 /* This function is defined as a macro on MacOS X. */
222 # if defined __cplusplus && defined GNULIB_NAMESPACE
226 _GL_FUNCDECL_SYS (sigaddset
, int, (sigset_t
*set
, int sig
)
227 _GL_ARG_NONNULL ((1)));
229 _GL_CXXALIAS_SYS (sigaddset
, int, (sigset_t
*set
, int sig
));
230 _GL_CXXALIASWARN (sigaddset
);
232 /* Remove a signal from a signal set. */
233 # if @HAVE_POSIX_SIGNALBLOCKING@
234 /* This function is defined as a macro on MacOS X. */
235 # if defined __cplusplus && defined GNULIB_NAMESPACE
239 _GL_FUNCDECL_SYS (sigdelset
, int, (sigset_t
*set
, int sig
)
240 _GL_ARG_NONNULL ((1)));
242 _GL_CXXALIAS_SYS (sigdelset
, int, (sigset_t
*set
, int sig
));
243 _GL_CXXALIASWARN (sigdelset
);
245 /* Fill a signal set with all possible signals. */
246 # if @HAVE_POSIX_SIGNALBLOCKING@
247 /* This function is defined as a macro on MacOS X. */
248 # if defined __cplusplus && defined GNULIB_NAMESPACE
252 _GL_FUNCDECL_SYS (sigfillset
, int, (sigset_t
*set
) _GL_ARG_NONNULL ((1)));
254 _GL_CXXALIAS_SYS (sigfillset
, int, (sigset_t
*set
));
255 _GL_CXXALIASWARN (sigfillset
);
257 /* Return the set of those blocked signals that are pending. */
258 # if !@HAVE_POSIX_SIGNALBLOCKING@
259 _GL_FUNCDECL_SYS (sigpending
, int, (sigset_t
*set
) _GL_ARG_NONNULL ((1)));
261 _GL_CXXALIAS_SYS (sigpending
, int, (sigset_t
*set
));
262 _GL_CXXALIASWARN (sigpending
);
264 /* If OLD_SET is not NULL, put the current set of blocked signals in *OLD_SET.
265 Then, if SET is not NULL, affect the current set of blocked signals by
266 combining it with *SET as indicated in OPERATION.
267 In this implementation, you are not allowed to change a signal handler
268 while the signal is blocked. */
269 # if !@HAVE_POSIX_SIGNALBLOCKING@
270 # define SIG_BLOCK 0 /* blocked_set = blocked_set | *set; */
271 # define SIG_SETMASK 1 /* blocked_set = *set; */
272 # define SIG_UNBLOCK 2 /* blocked_set = blocked_set & ~*set; */
273 _GL_FUNCDECL_SYS (sigprocmask
, int,
274 (int operation
, const sigset_t
*set
, sigset_t
*old_set
));
276 _GL_CXXALIAS_SYS (sigprocmask
, int,
277 (int operation
, const sigset_t
*set
, sigset_t
*old_set
));
278 _GL_CXXALIASWARN (sigprocmask
);
280 /* Install the handler FUNC for signal SIG, and return the previous
285 # if !GNULIB_defined_function_taking_int_returning_void_t
286 typedef void (*_gl_function_taking_int_returning_void_t
) (int);
287 # define GNULIB_defined_function_taking_int_returning_void_t 1
292 # if !@HAVE_POSIX_SIGNALBLOCKING@
293 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
294 # define signal rpl_signal
296 _GL_FUNCDECL_RPL (signal
, _gl_function_taking_int_returning_void_t
,
297 (int sig
, _gl_function_taking_int_returning_void_t func
));
298 _GL_CXXALIAS_RPL (signal
, _gl_function_taking_int_returning_void_t
,
299 (int sig
, _gl_function_taking_int_returning_void_t func
));
301 _GL_CXXALIAS_SYS (signal
, _gl_function_taking_int_returning_void_t
,
302 (int sig
, _gl_function_taking_int_returning_void_t func
));
304 _GL_CXXALIASWARN (signal
);
306 /* Raise signal SIG. */
307 # if !@HAVE_POSIX_SIGNALBLOCKING@ && GNULIB_defined_SIGPIPE
308 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
310 # define raise rpl_raise
312 _GL_FUNCDECL_RPL (raise
, int, (int sig
));
313 _GL_CXXALIAS_RPL (raise
, int, (int sig
));
315 _GL_CXXALIAS_SYS (raise
, int, (int sig
));
317 _GL_CXXALIASWARN (raise
);
319 #elif defined GNULIB_POSIXCHECK
321 # if HAVE_RAW_DECL_SIGADDSET
322 _GL_WARN_ON_USE (sigaddset
, "sigaddset is unportable - "
323 "use the gnulib module sigprocmask for portability");
326 # if HAVE_RAW_DECL_SIGDELSET
327 _GL_WARN_ON_USE (sigdelset
, "sigdelset is unportable - "
328 "use the gnulib module sigprocmask for portability");
331 # if HAVE_RAW_DECL_SIGEMPTYSET
332 _GL_WARN_ON_USE (sigemptyset
, "sigemptyset is unportable - "
333 "use the gnulib module sigprocmask for portability");
336 # if HAVE_RAW_DECL_SIGFILLSET
337 _GL_WARN_ON_USE (sigfillset
, "sigfillset is unportable - "
338 "use the gnulib module sigprocmask for portability");
341 # if HAVE_RAW_DECL_SIGISMEMBER
342 _GL_WARN_ON_USE (sigismember
, "sigismember is unportable - "
343 "use the gnulib module sigprocmask for portability");
346 # if HAVE_RAW_DECL_SIGPENDING
347 _GL_WARN_ON_USE (sigpending
, "sigpending is unportable - "
348 "use the gnulib module sigprocmask for portability");
351 # if HAVE_RAW_DECL_SIGPROCMASK
352 _GL_WARN_ON_USE (sigprocmask
, "sigprocmask is unportable - "
353 "use the gnulib module sigprocmask for portability");
355 #endif /* @GNULIB_SIGPROCMASK@ */
358 #if @GNULIB_SIGACTION@
359 # if !@HAVE_SIGACTION@
361 # if !@HAVE_SIGINFO_T@
363 # if !GNULIB_defined_siginfo_types
365 /* Present to allow compilation, but unsupported by gnulib. */
372 /* Present to allow compilation, but unsupported by gnulib. */
383 union sigval si_value
;
385 typedef struct siginfo_t siginfo_t
;
387 # define GNULIB_defined_siginfo_types 1
390 # endif /* !@HAVE_SIGINFO_T@ */
392 /* We assume that platforms which lack the sigaction() function also lack
393 the 'struct sigaction' type, and vice versa. */
395 # if !GNULIB_defined_struct_sigaction
401 void (*_sa_handler
) (int);
402 /* Present to allow compilation, but unsupported by gnulib. POSIX
403 says that implementations may, but not must, make sa_sigaction
404 overlap with sa_handler, but we know of no implementation where
405 they do not overlap. */
406 void (*_sa_sigaction
) (int, siginfo_t
*, void *);
409 /* Not all POSIX flags are supported. */
412 # define sa_handler _sa_func._sa_handler
413 # define sa_sigaction _sa_func._sa_sigaction
414 /* Unsupported flags are not present. */
415 # define SA_RESETHAND 1
416 # define SA_NODEFER 2
417 # define SA_RESTART 4
419 # define GNULIB_defined_struct_sigaction 1
422 _GL_FUNCDECL_SYS (sigaction
, int, (int, const struct sigaction
*restrict
,
423 struct sigaction
*restrict
));
425 # elif !@HAVE_STRUCT_SIGACTION_SA_SIGACTION@
427 # define sa_sigaction sa_handler
429 # endif /* !@HAVE_SIGACTION@, !@HAVE_STRUCT_SIGACTION_SA_SIGACTION@ */
431 _GL_CXXALIAS_SYS (sigaction
, int, (int, const struct sigaction
*restrict
,
432 struct sigaction
*restrict
));
433 _GL_CXXALIASWARN (sigaction
);
435 #elif defined GNULIB_POSIXCHECK
437 # if HAVE_RAW_DECL_SIGACTION
438 _GL_WARN_ON_USE (sigaction
, "sigaction is unportable - "
439 "use the gnulib module sigaction for portability");
443 /* Some systems don't have SA_NODEFER. */
445 # define SA_NODEFER 0
449 #endif /* _@GUARD_PREFIX@_SIGNAL_H */
450 #endif /* _@GUARD_PREFIX@_SIGNAL_H */