Update FSF's address in the preamble.
[bpt/emacs.git] / src / syssignal.h
1 /* syssignal.h - System-dependent definitions for signals.
2 Copyright (C) 1993 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21 #ifdef POSIX_SIGNALS
22
23 /* Don't #include <signal.h>. That header should always be #included
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. */
28
29 #define SIGMASKTYPE sigset_t
30
31 #define SIGEMPTYMASK (empty_mask)
32 #define SIGFULLMASK (full_mask)
33 extern sigset_t empty_mask, full_mask, temp_mask;
34
35 /* POSIX pretty much destroys any possibility of writing sigmask as a
36 macro in standard C. */
37 #ifndef sigmask
38 #ifdef __GNUC__
39 #define sigmask(SIG) \
40 ({ \
41 sigset_t _mask; \
42 sigemptyset (&_mask); \
43 sigaddset (&_mask, SIG); \
44 _mask; \
45 })
46 #else /* ! defined (__GNUC__) */
47 extern sigset_t sys_sigmask ();
48 #define sigmask(SIG) (sys_sigmask (SIG))
49 #endif /* ! defined (__GNUC__) */
50 #endif
51
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)
56 #define sighold(SIG) ONLY_USED_IN_BSD_4_1
57 #define sigrelse(SIG) ONLY_USED_IN_BSD_4_1
58 #undef signal
59 #define signal(SIG,ACT) sys_signal(SIG,ACT)
60
61 /* Whether this is what all systems want or not, this is what
62 appears to be assumed in the source, for example data.c:arith_error. */
63 typedef RETSIGTYPE (*signal_handler_t) (/*int*/);
64
65 signal_handler_t sys_signal (/*int signal_number, signal_handler_t action*/);
66 int sys_sigpause (/*sigset_t new_mask*/);
67 sigset_t sys_sigblock (/*sigset_t new_mask*/);
68 sigset_t sys_sigunblock (/*sigset_t new_mask*/);
69 sigset_t sys_sigsetmask (/*sigset_t new_mask*/);
70
71 #define sys_sigdel(MASK,SIG) sigdelset (&MASK,SIG)
72
73 #else /* ! defined (POSIX_SIGNALS) */
74 #ifdef USG5_4
75
76 #ifndef sigblock
77 #define sigblock(sig) (sigprocmask (SIG_BLOCK, SIGEMPTYMASK | sig, NULL))
78 #endif
79
80 #define sigunblock(sig) (sigprocmask (SIG_SETMASK, SIGFULLMASK & ~(sig), NULL))
81
82 #else
83 #ifdef USG
84
85 #define sigunblock(sig)
86
87 #else
88
89 #define sigunblock(SIG) \
90 { SIGMASKTYPE omask = sigblock (SIGEMPTYMASK); sigsetmask (omask & ~SIG); }
91
92 #endif /* ! defined (USG) */
93 #endif /* ! defined (USG5_4) */
94 #endif /* ! defined (POSIX_SIGNALS) */
95
96 #ifndef SIGMASKTYPE
97 #define SIGMASKTYPE int
98 #endif
99
100 #ifndef SIGEMPTYMASK
101 #define SIGEMPTYMASK (0)
102 #endif
103
104 #ifndef SIGFULLMASK
105 #define SIGFULLMASK (0xffffffff)
106 #endif
107
108 #ifndef sigmask
109 #define sigmask(no) (1L << ((no) - 1))
110 #endif
111
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)
125 #endif /* BSD4_1 */
126
127 #ifdef BSD4_1
128 #define SIGIO SIGTINT
129 /* sigfree and sigholdx are in sysdep.c */
130 #define sigblockx(sig) sighold (sig)
131 #define sigunblockx(sig) sigrelse (sig)
132 #define sigpausex(sig) sigpause (sig)
133 #endif /* ! defined (BSD4_1) */
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
140 #ifdef WINDOWSNT
141 #define EMACS_KILLPG(gid, signo) (win32_kill_process (gid, signo))
142 #else
143 #define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo)))
144 #endif
145 #endif
146
147 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
148 testing SIGCHLD. */
149 #ifndef VMS
150 #ifdef SIGCLD
151 #ifndef SIGCHLD
152 #define SIGCHLD SIGCLD
153 #endif /* SIGCHLD */
154 #endif /* ! defined (SIGCLD) */
155 #endif /* VMS */