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
|
12244
|
9 the Free Software Foundation; either version 2, 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. */
|
2913
|
36
|
563
|
37 #define SIGMASKTYPE sigset_t
|
|
38
|
|
39 #define SIGEMPTYMASK (empty_mask)
|
|
40 #define SIGFULLMASK (full_mask)
|
20949
|
41 extern sigset_t empty_mask, full_mask;
|
563
|
42
|
637
|
43 /* POSIX pretty much destroys any possibility of writing sigmask as a
|
20949
|
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
|
637
|
48 #ifdef __GNUC__
|
|
49 #define sigmask(SIG) \
|
|
50 ({ \
|
|
51 sigset_t _mask; \
|
|
52 sigemptyset (&_mask); \
|
|
53 sigaddset (&_mask, SIG); \
|
|
54 _mask; \
|
|
55 })
|
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
56 #else /* ! defined (__GNUC__) */
|
3485
|
57 extern sigset_t sys_sigmask ();
|
637
|
58 #define sigmask(SIG) (sys_sigmask (SIG))
|
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
59 #endif /* ! defined (__GNUC__) */
|
624
|
60
|
20949
|
61 #undef sigpause
|
|
62 #define sigpause(MASK) sigsuspend (&(MASK))
|
18668
|
63
|
7903
|
64 #define sigblock(SIG) sys_sigblock (SIG)
|
|
65 #define sigunblock(SIG) sys_sigunblock (SIG)
|
14487
|
66 #ifndef sigsetmask
|
7903
|
67 #define sigsetmask(SIG) sys_sigsetmask (SIG)
|
14487
|
68 #endif
|
563
|
69 #define sighold(SIG) ONLY_USED_IN_BSD_4_1
|
|
70 #define sigrelse(SIG) ONLY_USED_IN_BSD_4_1
|
13332
|
71 #undef signal
|
8361
|
72 #define signal(SIG,ACT) sys_signal(SIG,ACT)
|
563
|
73
|
2913
|
74 /* Whether this is what all systems want or not, this is what
|
7903
|
75 appears to be assumed in the source, for example data.c:arith_error. */
|
10536
|
76 typedef RETSIGTYPE (*signal_handler_t) (/*int*/);
|
2913
|
77
|
21932
|
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));
|
563
|
82
|
7903
|
83 #define sys_sigdel(MASK,SIG) sigdelset (&MASK,SIG)
|
563
|
84
|
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
85 #else /* ! defined (POSIX_SIGNALS) */
|
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
86 #ifdef USG5_4
|
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
87
|
29811
|
88 extern SIGMASKTYPE sigprocmask_set;
|
|
89
|
7903
|
90 #ifndef sigblock
|
29811
|
91 #define sigblock(sig) \
|
|
92 (sigprocmask_set = SIGEMPTYMASK | (sig), \
|
|
93 sigprocmask (SIG_BLOCK, &sigprocmask_set, NULL))
|
7903
|
94 #endif
|
|
95
|
40677
|
96 #ifndef sigunblock
|
29811
|
97 #define sigunblock(sig) \
|
|
98 (sigprocmask_set = SIGFULLMASK & ~(sig), \
|
|
99 sigprocmask (SIG_SETMASK, &sigprocmask_set, NULL))
|
40677
|
100 #endif
|
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
101
|
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
102 #else
|
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
103 #ifdef USG
|
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
104
|
40677
|
105 #ifndef sigunblock
|
49600
|
106 #define sigunblock(sig)
|
40677
|
107 #endif
|
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
108
|
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
109 #else
|
563
|
110
|
40677
|
111 #ifndef sigunblock
|
563
|
112 #define sigunblock(SIG) \
|
|
113 { SIGMASKTYPE omask = sigblock (SIGEMPTYMASK); sigsetmask (omask & ~SIG); }
|
40677
|
114 #endif
|
563
|
115
|
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
116 #endif /* ! defined (USG) */
|
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
117 #endif /* ! defined (USG5_4) */
|
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
118 #endif /* ! defined (POSIX_SIGNALS) */
|
563
|
119
|
|
120 #ifndef SIGMASKTYPE
|
|
121 #define SIGMASKTYPE int
|
|
122 #endif
|
|
123
|
|
124 #ifndef SIGEMPTYMASK
|
637
|
125 #define SIGEMPTYMASK (0)
|
|
126 #endif
|
|
127
|
|
128 #ifndef SIGFULLMASK
|
|
129 #define SIGFULLMASK (0xffffffff)
|
563
|
130 #endif
|
|
131
|
|
132 #ifndef sigmask
|
|
133 #define sigmask(no) (1L << ((no) - 1))
|
|
134 #endif
|
|
135
|
637
|
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)
|
15417
|
143 #endif /* not BSD4_1 */
|
637
|
144
|
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
145 #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
|
146 #undef SIGINFO
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
147 #endif
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
148 #if defined (SIGIO) && defined (BROKEN_SIGIO)
|
66222
|
149 # undef SIGIO
|
|
150 # if defined (__Lynx__)
|
|
151 # undef SIGPOLL /* Defined as SIGIO on LynxOS */
|
|
152 # endif
|
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
153 #endif
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
154 #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
|
155 #undef SIGPOLL
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
156 #endif
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
157 #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
|
158 #undef SIGTSTP
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
159 #endif
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
160 #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
|
161 #undef SIGURG
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
162 #endif
|
33408
|
163 #if defined (SIGAIO) && defined (BROKEN_SIGAIO)
|
|
164 #undef SIGAIO
|
|
165 #endif
|
|
166 #if defined (SIGPTY) && defined (BROKEN_SIGPTY)
|
|
167 #undef SIGPTY
|
|
168 #endif
|
|
169
|
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
170
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
171 #if NSIG < NSIG_MINIMUM
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
172 # ifdef NSIG
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
173 # undef NSIG
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
174 # endif
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
175 # define NSIG NSIG_MINIMUM
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
176 #endif
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
177
|
563
|
178 #ifdef BSD4_1
|
|
179 #define SIGIO SIGTINT
|
16054
|
180 /* sigfree is in sysdep.c */
|
15417
|
181 #endif /* BSD4_1 */
|
563
|
182
|
|
183 /* On bsd, [man says] kill does not accept a negative number to kill a pgrp.
|
|
184 Must do that using the killpg call. */
|
16220
|
185 #ifdef BSD_SYSTEM
|
563
|
186 #define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo)))
|
|
187 #else
|
9796
|
188 #ifdef WINDOWSNT
|
15093
a18e7d41286a
(EMACS_KILLPG) [WINDOWSNT]: Invoke kill instead of win32_kill_process.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
189 #define EMACS_KILLPG(gid, signo) (kill (gid, signo))
|
9796
|
190 #else
|
563
|
191 #define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo)))
|
|
192 #endif
|
9796
|
193 #endif
|
563
|
194
|
|
195 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
|
|
196 testing SIGCHLD. */
|
|
197 #ifndef VMS
|
|
198 #ifdef SIGCLD
|
|
199 #ifndef SIGCHLD
|
|
200 #define SIGCHLD SIGCLD
|
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
201 #endif /* SIGCHLD */
|
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
202 #endif /* ! defined (SIGCLD) */
|
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
203 #endif /* VMS */
|
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
204
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
205 #ifndef HAVE_STRSIGNAL
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
206 /* strsignal is in sysdep.c */
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
207 char *strsignal ();
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
208 #endif
|
52401
|
209
|
58986
|
210 #ifdef HAVE_GTK_AND_PTHREAD
|
|
211 #define SIGNAL_THREAD_CHECK(signo) \
|
|
212 do { \
|
75408
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
diff
changeset
|
213 if (!pthread_equal (pthread_self (), main_thread)) \
|
58986
|
214 { \
|
|
215 /* POSIX says any thread can receive the signal. On GNU/Linux \
|
|
216 that is not true, but for other systems (FreeBSD at least) \
|
|
217 it is. So direct the signal to the correct thread and block \
|
|
218 it from this thread. */ \
|
|
219 sigset_t new_mask; \
|
|
220 \
|
|
221 sigemptyset (&new_mask); \
|
|
222 sigaddset (&new_mask, signo); \
|
|
223 pthread_sigmask (SIG_BLOCK, &new_mask, 0); \
|
|
224 pthread_kill (main_thread, signo); \
|
|
225 return; \
|
|
226 } \
|
|
227 } while (0)
|
|
228
|
|
229 #else /* not HAVE_GTK_AND_PTHREAD */
|
|
230 #define SIGNAL_THREAD_CHECK(signo)
|
|
231 #endif /* not HAVE_GTK_AND_PTHREAD */
|
52401
|
232 /* arch-tag: 4580e86a-340d-4574-9e11-a742b6e1a152
|
|
233 (do not change this comment) */
|