Split the double-inclusion guard. Fixes a problem with #include_next.
[pspp] / lib / signal_.h
1 /* A GNU-like <signal.h>.
2
3    Copyright (C) 2006-2007 Free Software Foundation, Inc.
4
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 2, or (at your option)
8    any later version.
9
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.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software Foundation,
17    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
19 #if defined __need_sig_atomic_t || defined __need_sigset_t
20 /* Special invocation convention inside glibc header files.  */
21
22 # if @HAVE_INCLUDE_NEXT@
23 #  include_next <signal.h>
24 # else
25 #  include @ABSOLUTE_SIGNAL_H@
26 # endif
27
28 #else
29 /* Normal invocation convention.  */
30
31 #ifndef _GL_SIGNAL_H
32
33 /* The include_next requires a split double-inclusion guard.  */
34 #if @HAVE_INCLUDE_NEXT@
35 # include_next <signal.h>
36 #else
37 # include @ABSOLUTE_SIGNAL_H@
38 #endif
39
40 #ifndef _GL_SIGNAL_H
41 #define _GL_SIGNAL_H
42
43 /* The definition of GL_LINK_WARNING is copied here.  */
44
45
46 #ifdef __cplusplus
47 extern "C" {
48 #endif
49
50
51 #if !@HAVE_POSIX_SIGNALBLOCKING@
52
53 /* Mingw defines sigset_t not in <signal.h>, but in <sys/types.h>.  */
54 # include <sys/types.h>
55
56 /* Maximum signal number + 1.  */
57 # ifndef NSIG
58 #  define NSIG 32
59 # endif
60
61 /* This code supports only 32 signals.  */
62 typedef int verify_NSIG_constraint[2 * (NSIG <= 32) - 1];
63
64 /* A set or mask of signals.  */
65 # if !@HAVE_SIGSET_T@
66 typedef unsigned int sigset_t;
67 # endif
68
69 /* Test whether a given signal is contained in a signal set.  */
70 extern int sigismember (const sigset_t *set, int sig);
71
72 /* Initialize a signal set to the empty set.  */
73 extern int sigemptyset (sigset_t *set);
74
75 /* Add a signal to a signal set.  */
76 extern int sigaddset (sigset_t *set, int sig);
77
78 /* Remove a signal from a signal set.  */
79 extern int sigdelset (sigset_t *set, int sig);
80
81 /* Fill a signal set with all possible signals.  */
82 extern int sigfillset (sigset_t *set);
83
84 /* Return the set of those blocked signals that are pending.  */
85 extern int sigpending (sigset_t *set);
86
87 /* If OLD_SET is not NULL, put the current set of blocked signals in *OLD_SET.
88    Then, if SET is not NULL, affect the current set of blocked signals by
89    combining it with *SET as indicated in OPERATION.
90    In this implementation, you are not allowed to change a signal handler
91    while the signal is blocked.  */
92 # define SIG_BLOCK   0  /* blocked_set = blocked_set | *set; */
93 # define SIG_SETMASK 1  /* blocked_set = *set; */
94 # define SIG_UNBLOCK 2  /* blocked_set = blocked_set & ~*set; */
95 extern int sigprocmask (int operation, const sigset_t *set, sigset_t *old_set);
96
97 #endif
98
99
100 #ifdef __cplusplus
101 }
102 #endif
103
104 #endif /* _GL_SIGNAL_H */
105 #endif /* _GL_SIGNAL_H */
106 #endif