Update FSF's address in the preamble.
[bpt/emacs.git] / src / syssignal.h
CommitLineData
9ab9afa9 1/* syssignal.h - System-dependent definitions for signals.
c6c5df7f 2 Copyright (C) 1993 Free Software Foundation, Inc.
9ab9afa9
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
7c938215 8the Free Software Foundation; either version 2, or (at your option)
9ab9afa9
JB
9any later version.
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
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
9ab9afa9
JB
20
21#ifdef POSIX_SIGNALS
00eaaa32 22
c3aa5fec 23/* Don't #include <signal.h>. That header should always be #included
cf026b25
JB
24 before "config.h", because some configuration files (like s/hpux.h)
25 indicate that SIGIO doesn't work by #undef-ing SIGIO. If this file
26 #includes <signal.h>, then that will re-#define SIGIO and confuse
27 things. */
00eaaa32 28
9ab9afa9
JB
29#define SIGMASKTYPE sigset_t
30
31#define SIGEMPTYMASK (empty_mask)
32#define SIGFULLMASK (full_mask)
33extern sigset_t empty_mask, full_mask, temp_mask;
34
1b1f8f85
JB
35/* POSIX pretty much destroys any possibility of writing sigmask as a
36 macro in standard C. */
00eaaa32 37#ifndef sigmask
1b1f8f85
JB
38#ifdef __GNUC__
39#define sigmask(SIG) \
40 ({ \
41 sigset_t _mask; \
42 sigemptyset (&_mask); \
43 sigaddset (&_mask, SIG); \
44 _mask; \
45 })
985a35a3 46#else /* ! defined (__GNUC__) */
9bd67a37 47extern sigset_t sys_sigmask ();
1b1f8f85 48#define sigmask(SIG) (sys_sigmask (SIG))
985a35a3 49#endif /* ! defined (__GNUC__) */
00eaaa32 50#endif
1b1f8f85 51
69037d5a
RS
52#define sigpause(SIG) sys_sigpause (SIG)
53#define sigblock(SIG) sys_sigblock (SIG)
54#define sigunblock(SIG) sys_sigunblock (SIG)
55#define sigsetmask(SIG) sys_sigsetmask (SIG)
9ab9afa9
JB
56#define sighold(SIG) ONLY_USED_IN_BSD_4_1
57#define sigrelse(SIG) ONLY_USED_IN_BSD_4_1
6c8a1e24 58#undef signal
9c063f29 59#define signal(SIG,ACT) sys_signal(SIG,ACT)
9ab9afa9 60
00eaaa32 61/* Whether this is what all systems want or not, this is what
69037d5a 62 appears to be assumed in the source, for example data.c:arith_error. */
667da7f5 63typedef RETSIGTYPE (*signal_handler_t) (/*int*/);
00eaaa32 64
667da7f5
KH
65signal_handler_t sys_signal (/*int signal_number, signal_handler_t action*/);
66int sys_sigpause (/*sigset_t new_mask*/);
67sigset_t sys_sigblock (/*sigset_t new_mask*/);
68sigset_t sys_sigunblock (/*sigset_t new_mask*/);
69sigset_t sys_sigsetmask (/*sigset_t new_mask*/);
9ab9afa9 70
69037d5a 71#define sys_sigdel(MASK,SIG) sigdelset (&MASK,SIG)
9ab9afa9 72
985a35a3
JB
73#else /* ! defined (POSIX_SIGNALS) */
74#ifdef USG5_4
75
69037d5a 76#ifndef sigblock
d8b3c190 77#define sigblock(sig) (sigprocmask (SIG_BLOCK, SIGEMPTYMASK | sig, NULL))
69037d5a
RS
78#endif
79
80#define sigunblock(sig) (sigprocmask (SIG_SETMASK, SIGFULLMASK & ~(sig), NULL))
985a35a3
JB
81
82#else
83#ifdef USG
84
85#define sigunblock(sig)
86
87#else
9ab9afa9
JB
88
89#define sigunblock(SIG) \
90{ SIGMASKTYPE omask = sigblock (SIGEMPTYMASK); sigsetmask (omask & ~SIG); }
91
985a35a3
JB
92#endif /* ! defined (USG) */
93#endif /* ! defined (USG5_4) */
94#endif /* ! defined (POSIX_SIGNALS) */
9ab9afa9
JB
95
96#ifndef SIGMASKTYPE
97#define SIGMASKTYPE int
98#endif
99
100#ifndef SIGEMPTYMASK
1b1f8f85
JB
101#define SIGEMPTYMASK (0)
102#endif
103
104#ifndef SIGFULLMASK
105#define SIGFULLMASK (0xffffffff)
9ab9afa9
JB
106#endif
107
108#ifndef sigmask
109#define sigmask(no) (1L << ((no) - 1))
110#endif
111
1b1f8f85
JB
112#ifndef sigunblock
113#define sigunblock(SIG) \
114{ SIGMASKTYPE omask = sigblock (SIGFULLMASK); sigsetmask (omask & ~SIG); }
115#endif
116
117/* It would be very nice if we could somehow clean up all this trash. */
118
119#ifndef BSD4_1
120#define sigfree() sigsetmask (SIGEMPTYMASK)
121#define sigholdx(sig) sigsetmask (sigmask (sig))
122#define sigblockx(sig) sigblock (sigmask (sig))
123#define sigunblockx(sig) sigblock (SIGEMPTYMASK)
124#define sigpausex(sig) sigpause (0)
985a35a3 125#endif /* BSD4_1 */
1b1f8f85 126
9ab9afa9
JB
127#ifdef BSD4_1
128#define SIGIO SIGTINT
129/* sigfree and sigholdx are in sysdep.c */
1b1f8f85
JB
130#define sigblockx(sig) sighold (sig)
131#define sigunblockx(sig) sigrelse (sig)
132#define sigpausex(sig) sigpause (sig)
985a35a3 133#endif /* ! defined (BSD4_1) */
9ab9afa9
JB
134
135/* On bsd, [man says] kill does not accept a negative number to kill a pgrp.
136 Must do that using the killpg call. */
137#ifdef BSD
138#define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo)))
139#else
57d65592
RS
140#ifdef WINDOWSNT
141#define EMACS_KILLPG(gid, signo) (win32_kill_process (gid, signo))
142#else
9ab9afa9
JB
143#define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo)))
144#endif
57d65592 145#endif
9ab9afa9
JB
146
147/* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
148 testing SIGCHLD. */
9ab9afa9
JB
149#ifndef VMS
150#ifdef SIGCLD
151#ifndef SIGCHLD
152#define SIGCHLD SIGCLD
985a35a3
JB
153#endif /* SIGCHLD */
154#endif /* ! defined (SIGCLD) */
155#endif /* VMS */