sigprocmask.h is replaced with <signal.h>.
[gnulib.git] / 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 #include @ABSOLUTE_SIGNAL_H@
23
24 #else
25 /* Normal invocation convention.  */
26
27 #ifndef _GL_SIGNAL_H
28 #define _GL_SIGNAL_H
29
30 #include @ABSOLUTE_SIGNAL_H@
31
32
33 /* The definition of GL_LINK_WARNING is copied here.  */
34
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40
41 #if !@HAVE_POSIX_SIGNALBLOCKING@
42
43 /* Mingw defines sigset_t not in <signal.h>, but in <sys/types.h>.  */
44 # include <sys/types.h>
45
46 /* Maximum signal number + 1.  */
47 # ifndef NSIG
48 #  define NSIG 32
49 # endif
50
51 /* This code supports only 32 signals.  */
52 typedef int verify_NSIG_constraint[2 * (NSIG <= 32) - 1];
53
54 /* A set or mask of signals.  */
55 # if !@HAVE_SIGSET_T@
56 typedef unsigned int sigset_t;
57 # endif
58
59 /* Test whether a given signal is contained in a signal set.  */
60 extern int sigismember (const sigset_t *set, int sig);
61
62 /* Initialize a signal set to the empty set.  */
63 extern int sigemptyset (sigset_t *set);
64
65 /* Add a signal to a signal set.  */
66 extern int sigaddset (sigset_t *set, int sig);
67
68 /* Remove a signal from a signal set.  */
69 extern int sigdelset (sigset_t *set, int sig);
70
71 /* Fill a signal set with all possible signals.  */
72 extern int sigfillset (sigset_t *set);
73
74 /* Return the set of those blocked signals that are pending.  */
75 extern int sigpending (sigset_t *set);
76
77 /* If OLD_SET is not NULL, put the current set of blocked signals in *OLD_SET.
78    Then, if SET is not NULL, affect the current set of blocked signals by
79    combining it with *SET as indicated in OPERATION.
80    In this implementation, you are not allowed to change a signal handler
81    while the signal is blocked.  */
82 # define SIG_BLOCK   0  /* blocked_set = blocked_set | *set; */
83 # define SIG_SETMASK 1  /* blocked_set = *set; */
84 # define SIG_UNBLOCK 2  /* blocked_set = blocked_set & ~*set; */
85 extern int sigprocmask (int operation, const sigset_t *set, sigset_t *old_set);
86
87 #endif
88
89
90 #ifdef __cplusplus
91 }
92 #endif
93
94 #endif /* _GL_SIGNAL_H */
95 #endif