Update years in copyright notice; nfc.
[bpt/emacs.git] / src / syssignal.h
CommitLineData
9ab9afa9 1/* syssignal.h - System-dependent definitions for signals.
0b5538bd 2 Copyright (C) 1993, 1999, 2002, 2003, 2004,
aaef169d 3 2005, 2006 Free Software Foundation, Inc.
9ab9afa9
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
7c938215 9the Free Software Foundation; either version 2, or (at your option)
9ab9afa9
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
4fc5845f
LK
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
9ab9afa9 21
2b98b088
TTN
22extern void init_signals P_ ((void));
23
333f1b6f
JD
24#ifdef HAVE_GTK_AND_PTHREAD
25#include <pthread.h>
26extern pthread_t main_thread;
27#endif
28
9ab9afa9 29#ifdef POSIX_SIGNALS
00eaaa32 30
c3aa5fec 31/* Don't #include <signal.h>. That header should always be #included
cf026b25
JB
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. */
00eaaa32 36
9ab9afa9
JB
37#define SIGMASKTYPE sigset_t
38
39#define SIGEMPTYMASK (empty_mask)
40#define SIGFULLMASK (full_mask)
47b682b7 41extern sigset_t empty_mask, full_mask;
9ab9afa9 42
1b1f8f85 43/* POSIX pretty much destroys any possibility of writing sigmask as a
47b682b7
AS
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
1b1f8f85
JB
48#ifdef __GNUC__
49#define sigmask(SIG) \
50 ({ \
51 sigset_t _mask; \
52 sigemptyset (&_mask); \
53 sigaddset (&_mask, SIG); \
54 _mask; \
55 })
985a35a3 56#else /* ! defined (__GNUC__) */
9bd67a37 57extern sigset_t sys_sigmask ();
1b1f8f85 58#define sigmask(SIG) (sys_sigmask (SIG))
985a35a3 59#endif /* ! defined (__GNUC__) */
1b1f8f85 60
47b682b7
AS
61#undef sigpause
62#define sigpause(MASK) sigsuspend (&(MASK))
9f910b50 63
69037d5a
RS
64#define sigblock(SIG) sys_sigblock (SIG)
65#define sigunblock(SIG) sys_sigunblock (SIG)
cc210d67 66#ifndef sigsetmask
69037d5a 67#define sigsetmask(SIG) sys_sigsetmask (SIG)
cc210d67 68#endif
9ab9afa9
JB
69#define sighold(SIG) ONLY_USED_IN_BSD_4_1
70#define sigrelse(SIG) ONLY_USED_IN_BSD_4_1
6c8a1e24 71#undef signal
9c063f29 72#define signal(SIG,ACT) sys_signal(SIG,ACT)
9ab9afa9 73
00eaaa32 74/* Whether this is what all systems want or not, this is what
69037d5a 75 appears to be assumed in the source, for example data.c:arith_error. */
667da7f5 76typedef RETSIGTYPE (*signal_handler_t) (/*int*/);
00eaaa32 77
030f4475
AS
78signal_handler_t sys_signal P_ ((int signal_number, signal_handler_t action));
79sigset_t sys_sigblock P_ ((sigset_t new_mask));
80sigset_t sys_sigunblock P_ ((sigset_t new_mask));
81sigset_t sys_sigsetmask P_ ((sigset_t new_mask));
9ab9afa9 82
69037d5a 83#define sys_sigdel(MASK,SIG) sigdelset (&MASK,SIG)
9ab9afa9 84
985a35a3
JB
85#else /* ! defined (POSIX_SIGNALS) */
86#ifdef USG5_4
87
094d2b0e
GM
88extern SIGMASKTYPE sigprocmask_set;
89
69037d5a 90#ifndef sigblock
094d2b0e
GM
91#define sigblock(sig) \
92 (sigprocmask_set = SIGEMPTYMASK | (sig), \
93 sigprocmask (SIG_BLOCK, &sigprocmask_set, NULL))
69037d5a
RS
94#endif
95
fe54008f 96#ifndef sigunblock
094d2b0e
GM
97#define sigunblock(sig) \
98 (sigprocmask_set = SIGFULLMASK & ~(sig), \
99 sigprocmask (SIG_SETMASK, &sigprocmask_set, NULL))
fe54008f 100#endif
985a35a3
JB
101
102#else
103#ifdef USG
104
fe54008f 105#ifndef sigunblock
177c0ea7 106#define sigunblock(sig)
fe54008f 107#endif
985a35a3
JB
108
109#else
9ab9afa9 110
fe54008f 111#ifndef sigunblock
9ab9afa9
JB
112#define sigunblock(SIG) \
113{ SIGMASKTYPE omask = sigblock (SIGEMPTYMASK); sigsetmask (omask & ~SIG); }
fe54008f 114#endif
9ab9afa9 115
985a35a3
JB
116#endif /* ! defined (USG) */
117#endif /* ! defined (USG5_4) */
118#endif /* ! defined (POSIX_SIGNALS) */
9ab9afa9
JB
119
120#ifndef SIGMASKTYPE
121#define SIGMASKTYPE int
122#endif
123
124#ifndef SIGEMPTYMASK
1b1f8f85
JB
125#define SIGEMPTYMASK (0)
126#endif
127
128#ifndef SIGFULLMASK
129#define SIGFULLMASK (0xffffffff)
9ab9afa9
JB
130#endif
131
132#ifndef sigmask
133#define sigmask(no) (1L << ((no) - 1))
134#endif
135
1b1f8f85
JB
136#ifndef sigunblock
137#define sigunblock(SIG) \
138{ SIGMASKTYPE omask = sigblock (SIGFULLMASK); sigsetmask (omask & ~SIG); }
139#endif
140
1b1f8f85
JB
141#ifndef BSD4_1
142#define sigfree() sigsetmask (SIGEMPTYMASK)
ea973b10 143#endif /* not BSD4_1 */
1b1f8f85 144
68c45bf0
PE
145#if defined (SIGINFO) && defined (BROKEN_SIGINFO)
146#undef SIGINFO
147#endif
148#if defined (SIGIO) && defined (BROKEN_SIGIO)
098767d9
EZ
149# undef SIGIO
150# if defined (__Lynx__)
151# undef SIGPOLL /* Defined as SIGIO on LynxOS */
152# endif
68c45bf0
PE
153#endif
154#if defined (SIGPOLL) && defined (BROKEN_SIGPOLL)
155#undef SIGPOLL
156#endif
157#if defined (SIGTSTP) && defined (BROKEN_SIGTSTP)
158#undef SIGTSTP
159#endif
160#if defined (SIGURG) && defined (BROKEN_SIGURG)
161#undef SIGURG
162#endif
4e677396
KH
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
68c45bf0
PE
170
171#if NSIG < NSIG_MINIMUM
172# ifdef NSIG
173# undef NSIG
174# endif
175# define NSIG NSIG_MINIMUM
176#endif
177
9ab9afa9
JB
178#ifdef BSD4_1
179#define SIGIO SIGTINT
645280b7 180/* sigfree is in sysdep.c */
ea973b10 181#endif /* BSD4_1 */
9ab9afa9
JB
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. */
6df54671 185#ifdef BSD_SYSTEM
9ab9afa9
JB
186#define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo)))
187#else
57d65592 188#ifdef WINDOWSNT
f405affb 189#define EMACS_KILLPG(gid, signo) (kill (gid, signo))
57d65592 190#else
9ab9afa9
JB
191#define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo)))
192#endif
57d65592 193#endif
9ab9afa9
JB
194
195/* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
196 testing SIGCHLD. */
9ab9afa9
JB
197#ifndef VMS
198#ifdef SIGCLD
199#ifndef SIGCHLD
200#define SIGCHLD SIGCLD
985a35a3
JB
201#endif /* SIGCHLD */
202#endif /* ! defined (SIGCLD) */
203#endif /* VMS */
68c45bf0
PE
204
205#ifndef HAVE_STRSIGNAL
206/* strsignal is in sysdep.c */
207char *strsignal ();
208#endif
ab5796a9 209
333f1b6f
JD
210#ifdef HAVE_GTK_AND_PTHREAD
211#define SIGNAL_THREAD_CHECK(signo) \
212 do { \
213 if (pthread_self () != main_thread) \
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 */
ab5796a9
MB
232/* arch-tag: 4580e86a-340d-4574-9e11-a742b6e1a152
233 (do not change this comment) */