Convert consecutive FSF copyright years to ranges.
[bpt/emacs.git] / src / syssignal.h
CommitLineData
9ab9afa9 1/* syssignal.h - System-dependent definitions for signals.
73b0cd50 2 Copyright (C) 1993, 1999, 2001-2011 Free Software Foundation, Inc.
9ab9afa9
JB
3
4This file is part of GNU Emacs.
5
b9b1cc14 6GNU Emacs is free software: you can redistribute it and/or modify
9ab9afa9 7it under the terms of the GNU General Public License as published by
b9b1cc14
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
9ab9afa9
JB
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
b9b1cc14 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
9ab9afa9 18
383e0970 19extern void init_signals (void);
2b98b088 20
07b87a10 21#if defined (HAVE_GTK_AND_PTHREAD) || defined (HAVE_NS)
333f1b6f 22#include <pthread.h>
f8240abd
YM
23/* If defined, asynchronous signals delivered to a non-main thread are
24 forwarded to the main thread. */
25#define FORWARD_SIGNAL_TO_MAIN_THREAD
26#endif
27
c3aa5fec 28/* Don't #include <signal.h>. That header should always be #included
cf026b25
JB
29 before "config.h", because some configuration files (like s/hpux.h)
30 indicate that SIGIO doesn't work by #undef-ing SIGIO. If this file
31 #includes <signal.h>, then that will re-#define SIGIO and confuse
32 things. */
4d553a13 33/* XXX This is not correct anymore, there is a BROKEN_SIGIO macro. */
00eaaa32 34
9ab9afa9
JB
35#define SIGMASKTYPE sigset_t
36
37#define SIGEMPTYMASK (empty_mask)
38#define SIGFULLMASK (full_mask)
47b682b7 39extern sigset_t empty_mask, full_mask;
9ab9afa9 40
1b1f8f85 41/* POSIX pretty much destroys any possibility of writing sigmask as a
47b682b7
AS
42 macro in standard C. We always define our own version because the
43 predefined macro in Glibc 2.1 is only provided for compatility for old
44 programs that use int as signal mask type. */
45#undef sigmask
1b1f8f85
JB
46#ifdef __GNUC__
47#define sigmask(SIG) \
48 ({ \
49 sigset_t _mask; \
50 sigemptyset (&_mask); \
51 sigaddset (&_mask, SIG); \
52 _mask; \
53 })
985a35a3 54#else /* ! defined (__GNUC__) */
9bd67a37 55extern sigset_t sys_sigmask ();
1b1f8f85 56#define sigmask(SIG) (sys_sigmask (SIG))
985a35a3 57#endif /* ! defined (__GNUC__) */
1b1f8f85 58
47b682b7
AS
59#undef sigpause
60#define sigpause(MASK) sigsuspend (&(MASK))
9f910b50 61
69037d5a
RS
62#define sigblock(SIG) sys_sigblock (SIG)
63#define sigunblock(SIG) sys_sigunblock (SIG)
cc210d67 64#ifndef sigsetmask
69037d5a 65#define sigsetmask(SIG) sys_sigsetmask (SIG)
cc210d67 66#endif
6c8a1e24 67#undef signal
9c063f29 68#define signal(SIG,ACT) sys_signal(SIG,ACT)
9ab9afa9 69
ae877222
DN
70/* Whether this is what all systems want or not, this is what
71 appears to be assumed in the source, for example data.c:arith_error. */
72typedef RETSIGTYPE (*signal_handler_t) (int);
73
383e0970
J
74signal_handler_t sys_signal (int signal_number, signal_handler_t action);
75sigset_t sys_sigblock (sigset_t new_mask);
76sigset_t sys_sigunblock (sigset_t new_mask);
77sigset_t sys_sigsetmask (sigset_t new_mask);
9ab9afa9 78
69037d5a 79#define sys_sigdel(MASK,SIG) sigdelset (&MASK,SIG)
9ab9afa9 80
1b1f8f85 81#define sigfree() sigsetmask (SIGEMPTYMASK)
1b1f8f85 82
68c45bf0
PE
83#if defined (SIGINFO) && defined (BROKEN_SIGINFO)
84#undef SIGINFO
85#endif
86#if defined (SIGIO) && defined (BROKEN_SIGIO)
098767d9 87# undef SIGIO
68c45bf0
PE
88#endif
89#if defined (SIGPOLL) && defined (BROKEN_SIGPOLL)
90#undef SIGPOLL
91#endif
92#if defined (SIGTSTP) && defined (BROKEN_SIGTSTP)
93#undef SIGTSTP
94#endif
95#if defined (SIGURG) && defined (BROKEN_SIGURG)
96#undef SIGURG
97#endif
4e677396
KH
98#if defined (SIGAIO) && defined (BROKEN_SIGAIO)
99#undef SIGAIO
100#endif
101#if defined (SIGPTY) && defined (BROKEN_SIGPTY)
102#undef SIGPTY
103#endif
104
68c45bf0
PE
105
106#if NSIG < NSIG_MINIMUM
107# ifdef NSIG
108# undef NSIG
109# endif
110# define NSIG NSIG_MINIMUM
111#endif
112
9ab9afa9
JB
113/* On bsd, [man says] kill does not accept a negative number to kill a pgrp.
114 Must do that using the killpg call. */
6df54671 115#ifdef BSD_SYSTEM
9ab9afa9
JB
116#define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo)))
117#else
57d65592 118#ifdef WINDOWSNT
f405affb 119#define EMACS_KILLPG(gid, signo) (kill (gid, signo))
57d65592 120#else
9ab9afa9
JB
121#define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo)))
122#endif
57d65592 123#endif
9ab9afa9
JB
124
125/* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
126 testing SIGCHLD. */
9ab9afa9
JB
127#ifdef SIGCLD
128#ifndef SIGCHLD
129#define SIGCHLD SIGCLD
985a35a3
JB
130#endif /* SIGCHLD */
131#endif /* ! defined (SIGCLD) */
68c45bf0
PE
132
133#ifndef HAVE_STRSIGNAL
134/* strsignal is in sysdep.c */
361358ea 135char *strsignal (int);
68c45bf0 136#endif
ab5796a9 137
f8240abd 138#ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
dff94ed5 139extern pthread_t main_thread;
333f1b6f
JD
140#define SIGNAL_THREAD_CHECK(signo) \
141 do { \
3fb8b536 142 if (!pthread_equal (pthread_self (), main_thread)) \
333f1b6f
JD
143 { \
144 /* POSIX says any thread can receive the signal. On GNU/Linux \
145 that is not true, but for other systems (FreeBSD at least) \
146 it is. So direct the signal to the correct thread and block \
147 it from this thread. */ \
148 sigset_t new_mask; \
149 \
150 sigemptyset (&new_mask); \
151 sigaddset (&new_mask, signo); \
152 pthread_sigmask (SIG_BLOCK, &new_mask, 0); \
153 pthread_kill (main_thread, signo); \
154 return; \
155 } \
156 } while (0)
157
f8240abd 158#else /* not FORWARD_SIGNAL_TO_MAIN_THREAD */
333f1b6f 159#define SIGNAL_THREAD_CHECK(signo)
f8240abd 160#endif /* not FORWARD_SIGNAL_TO_MAIN_THREAD */