blob: 06c972743cdbd1584996d116e58193636d0e1843 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/* Test of <signal.h> substitute.
Copyright (C) 2009-2022 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Eric Blake <ebb9@byu.net>, 2009. */
#include <config.h>
#include <signal.h>
/* Check for required types. */
struct
{
size_t a;
uid_t b;
volatile sig_atomic_t c;
sigset_t d;
pid_t e;
#if 0
/* Not guaranteed by gnulib. */
pthread_t f;
struct timespec g;
#endif
} s;
/* Check that NSIG is defined. */
int nsig = NSIG;
int
main (void)
{
switch (0)
{
/* The following are guaranteed by C. */
case 0:
case SIGABRT:
case SIGFPE:
case SIGILL:
case SIGINT:
case SIGSEGV:
case SIGTERM:
/* The following is guaranteed by gnulib. */
#if GNULIB_SIGPIPE || defined SIGPIPE
case SIGPIPE:
#endif
/* Ensure no conflict with other standardized names. */
#ifdef SIGALRM
case SIGALRM:
#endif
/* On Haiku, SIGBUS is mistakenly equal to SIGSEGV. */
#if defined SIGBUS && SIGBUS != SIGSEGV
case SIGBUS:
#endif
#ifdef SIGCHLD
case SIGCHLD:
#endif
#ifdef SIGCONT
case SIGCONT:
#endif
#ifdef SIGHUP
case SIGHUP:
#endif
#ifdef SIGKILL
case SIGKILL:
#endif
#ifdef SIGQUIT
case SIGQUIT:
#endif
#ifdef SIGSTOP
case SIGSTOP:
#endif
#ifdef SIGTSTP
case SIGTSTP:
#endif
#ifdef SIGTTIN
case SIGTTIN:
#endif
#ifdef SIGTTOU
case SIGTTOU:
#endif
#ifdef SIGUSR1
case SIGUSR1:
#endif
#ifdef SIGUSR2
case SIGUSR2:
#endif
#ifdef SIGSYS
case SIGSYS:
#endif
#ifdef SIGTRAP
case SIGTRAP:
#endif
#ifdef SIGURG
case SIGURG:
#endif
#ifdef SIGVTALRM
case SIGVTALRM:
#endif
#ifdef SIGXCPU
case SIGXCPU:
#endif
#ifdef SIGXFSZ
case SIGXFSZ:
#endif
/* SIGRTMIN and SIGRTMAX need not be compile-time constants. */
#if 0
# ifdef SIGRTMIN
case SIGRTMIN:
# endif
# ifdef SIGRTMAX
case SIGRTMAX:
# endif
#endif
;
}
return s.a + s.b + s.c + s.e;
}
|