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