]> code.delx.au - gnu-emacs/blob - src/syssignal.h
Merged from miles@gnu.org--gnu-2005 (patch 469)
[gnu-emacs] / src / syssignal.h
1 /* syssignal.h - System-dependent definitions for signals.
2 Copyright (C) 1993, 1999 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA. */
20
21 extern void init_signals P_ ((void));
22
23 #ifdef HAVE_GTK_AND_PTHREAD
24 #include <pthread.h>
25 extern pthread_t main_thread;
26 #endif
27
28 #ifdef POSIX_SIGNALS
29
30 /* Don't #include <signal.h>. That header should always be #included
31 before "config.h", because some configuration files (like s/hpux.h)
32 indicate that SIGIO doesn't work by #undef-ing SIGIO. If this file
33 #includes <signal.h>, then that will re-#define SIGIO and confuse
34 things. */
35 /* XXX This is not correct anymore, there is a BROKEN_SIGIO macro. */
36
37 #define SIGMASKTYPE sigset_t
38
39 #define SIGEMPTYMASK (empty_mask)
40 #define SIGFULLMASK (full_mask)
41 extern sigset_t empty_mask, full_mask;
42
43 /* POSIX pretty much destroys any possibility of writing sigmask as a
44 macro in standard C. We always define our own version because the
45 predefined macro in Glibc 2.1 is only provided for compatility for old
46 programs that use int as signal mask type. */
47 #undef sigmask
48 #ifdef __GNUC__
49 #define sigmask(SIG) \
50 ({ \
51 sigset_t _mask; \
52 sigemptyset (&_mask); \
53 sigaddset (&_mask, SIG); \
54 _mask; \
55 })
56 #else /* ! defined (__GNUC__) */
57 extern sigset_t sys_sigmask ();
58 #define sigmask(SIG) (sys_sigmask (SIG))
59 #endif /* ! defined (__GNUC__) */
60
61 #undef sigpause
62 #define sigpause(MASK) sigsuspend (&(MASK))
63
64 #define sigblock(SIG) sys_sigblock (SIG)
65 #define sigunblock(SIG) sys_sigunblock (SIG)
66 #ifndef sigsetmask
67 #define sigsetmask(SIG) sys_sigsetmask (SIG)
68 #endif
69 #define sighold(SIG) ONLY_USED_IN_BSD_4_1
70 #define sigrelse(SIG) ONLY_USED_IN_BSD_4_1
71 #undef signal
72 #define signal(SIG,ACT) sys_signal(SIG,ACT)
73
74 /* Whether this is what all systems want or not, this is what
75 appears to be assumed in the source, for example data.c:arith_error. */
76 typedef RETSIGTYPE (*signal_handler_t) (/*int*/);
77
78 signal_handler_t sys_signal P_ ((int signal_number, signal_handler_t action));
79 sigset_t sys_sigblock P_ ((sigset_t new_mask));
80 sigset_t sys_sigunblock P_ ((sigset_t new_mask));
81 sigset_t sys_sigsetmask P_ ((sigset_t new_mask));
82
83 #define sys_sigdel(MASK,SIG) sigdelset (&MASK,SIG)
84
85 #else /* ! defined (POSIX_SIGNALS) */
86 #ifdef USG5_4
87
88 extern SIGMASKTYPE sigprocmask_set;
89
90 #ifndef sigblock
91 #define sigblock(sig) \
92 (sigprocmask_set = SIGEMPTYMASK | (sig), \
93 sigprocmask (SIG_BLOCK, &sigprocmask_set, NULL))
94 #endif
95
96 #ifndef sigunblock
97 #define sigunblock(sig) \
98 (sigprocmask_set = SIGFULLMASK & ~(sig), \
99 sigprocmask (SIG_SETMASK, &sigprocmask_set, NULL))
100 #endif
101
102 #else
103 #ifdef USG
104
105 #ifndef sigunblock
106 #define sigunblock(sig)
107 #endif
108
109 #else
110
111 #ifndef sigunblock
112 #define sigunblock(SIG) \
113 { SIGMASKTYPE omask = sigblock (SIGEMPTYMASK); sigsetmask (omask & ~SIG); }
114 #endif
115
116 #endif /* ! defined (USG) */
117 #endif /* ! defined (USG5_4) */
118 #endif /* ! defined (POSIX_SIGNALS) */
119
120 #ifndef SIGMASKTYPE
121 #define SIGMASKTYPE int
122 #endif
123
124 #ifndef SIGEMPTYMASK
125 #define SIGEMPTYMASK (0)
126 #endif
127
128 #ifndef SIGFULLMASK
129 #define SIGFULLMASK (0xffffffff)
130 #endif
131
132 #ifndef sigmask
133 #define sigmask(no) (1L << ((no) - 1))
134 #endif
135
136 #ifndef sigunblock
137 #define sigunblock(SIG) \
138 { SIGMASKTYPE omask = sigblock (SIGFULLMASK); sigsetmask (omask & ~SIG); }
139 #endif
140
141 #ifndef BSD4_1
142 #define sigfree() sigsetmask (SIGEMPTYMASK)
143 #endif /* not BSD4_1 */
144
145 #if defined (SIGINFO) && defined (BROKEN_SIGINFO)
146 #undef SIGINFO
147 #endif
148 #if defined (SIGIO) && defined (BROKEN_SIGIO)
149 #undef SIGIO
150 #endif
151 #if defined (SIGPOLL) && defined (BROKEN_SIGPOLL)
152 #undef SIGPOLL
153 #endif
154 #if defined (SIGTSTP) && defined (BROKEN_SIGTSTP)
155 #undef SIGTSTP
156 #endif
157 #if defined (SIGURG) && defined (BROKEN_SIGURG)
158 #undef SIGURG
159 #endif
160 #if defined (SIGAIO) && defined (BROKEN_SIGAIO)
161 #undef SIGAIO
162 #endif
163 #if defined (SIGPTY) && defined (BROKEN_SIGPTY)
164 #undef SIGPTY
165 #endif
166
167
168 #if NSIG < NSIG_MINIMUM
169 # ifdef NSIG
170 # undef NSIG
171 # endif
172 # define NSIG NSIG_MINIMUM
173 #endif
174
175 #ifdef BSD4_1
176 #define SIGIO SIGTINT
177 /* sigfree is in sysdep.c */
178 #endif /* BSD4_1 */
179
180 /* On bsd, [man says] kill does not accept a negative number to kill a pgrp.
181 Must do that using the killpg call. */
182 #ifdef BSD_SYSTEM
183 #define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo)))
184 #else
185 #ifdef WINDOWSNT
186 #define EMACS_KILLPG(gid, signo) (kill (gid, signo))
187 #else
188 #define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo)))
189 #endif
190 #endif
191
192 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
193 testing SIGCHLD. */
194 #ifndef VMS
195 #ifdef SIGCLD
196 #ifndef SIGCHLD
197 #define SIGCHLD SIGCLD
198 #endif /* SIGCHLD */
199 #endif /* ! defined (SIGCLD) */
200 #endif /* VMS */
201
202 #ifndef HAVE_STRSIGNAL
203 /* strsignal is in sysdep.c */
204 char *strsignal ();
205 #endif
206
207 #ifdef HAVE_GTK_AND_PTHREAD
208 #define SIGNAL_THREAD_CHECK(signo) \
209 do { \
210 if (pthread_self () != main_thread) \
211 { \
212 /* POSIX says any thread can receive the signal. On GNU/Linux \
213 that is not true, but for other systems (FreeBSD at least) \
214 it is. So direct the signal to the correct thread and block \
215 it from this thread. */ \
216 sigset_t new_mask; \
217 \
218 sigemptyset (&new_mask); \
219 sigaddset (&new_mask, signo); \
220 pthread_sigmask (SIG_BLOCK, &new_mask, 0); \
221 pthread_kill (main_thread, signo); \
222 return; \
223 } \
224 } while (0)
225
226 #else /* not HAVE_GTK_AND_PTHREAD */
227 #define SIGNAL_THREAD_CHECK(signo)
228 #endif /* not HAVE_GTK_AND_PTHREAD */
229 /* arch-tag: 4580e86a-340d-4574-9e11-a742b6e1a152
230 (do not change this comment) */