Mercurial > emacs
annotate src/syssignal.h @ 19799:59b1106a46e5
(command-line-1): Update copyright year in string.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 07 Sep 1997 17:07:01 +0000 |
parents | c91e58230454 |
children | 292cd2a2d600 |
rev | line source |
---|---|
563 | 1 /* syssignal.h - System-dependent definitions for signals. |
2961 | 2 Copyright (C) 1993 Free Software Foundation, Inc. |
563 | 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 | |
12244 | 8 the Free Software Foundation; either version 2, or (at your option) |
563 | 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 | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13332
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13332
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
563 | 20 |
21 #ifdef POSIX_SIGNALS | |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2122
diff
changeset
|
22 |
10135 | 23 /* Don't #include <signal.h>. That header should always be #included |
3003
5a73d384f45e
* syssignal.h: Don't #include <signal.h>
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
24 before "config.h", because some configuration files (like s/hpux.h) |
5a73d384f45e
* syssignal.h: Don't #include <signal.h>
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
25 indicate that SIGIO doesn't work by #undef-ing SIGIO. If this file |
5a73d384f45e
* syssignal.h: Don't #include <signal.h>
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
26 #includes <signal.h>, then that will re-#define SIGIO and confuse |
5a73d384f45e
* syssignal.h: Don't #include <signal.h>
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
27 things. */ |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2122
diff
changeset
|
28 |
563 | 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 | |
637 | 35 /* POSIX pretty much destroys any possibility of writing sigmask as a |
36 macro in standard C. */ | |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2122
diff
changeset
|
37 #ifndef sigmask |
637 | 38 #ifdef __GNUC__ |
39 #define sigmask(SIG) \ | |
40 ({ \ | |
41 sigset_t _mask; \ | |
42 sigemptyset (&_mask); \ | |
43 sigaddset (&_mask, SIG); \ | |
44 _mask; \ | |
45 }) | |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
46 #else /* ! defined (__GNUC__) */ |
3485
c2dbfca5e1de
[POSIX] [!__GNUC__] (sys_sigmask): Add declaration.
Richard M. Stallman <rms@gnu.org>
parents:
3008
diff
changeset
|
47 extern sigset_t sys_sigmask (); |
637 | 48 #define sigmask(SIG) (sys_sigmask (SIG)) |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
49 #endif /* ! defined (__GNUC__) */ |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2122
diff
changeset
|
50 #endif |
624 | 51 |
18564
ff178e0a7423
(sigpause): Don't define if already defined.
Richard M. Stallman <rms@gnu.org>
parents:
16220
diff
changeset
|
52 #ifndef sigpause |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
53 #define sigpause(SIG) sys_sigpause (SIG) |
18668
c91e58230454
[sigmask] (SIGEMPTYMASK): Define to use sigmask.
Richard M. Stallman <rms@gnu.org>
parents:
18564
diff
changeset
|
54 #else |
c91e58230454
[sigmask] (SIGEMPTYMASK): Define to use sigmask.
Richard M. Stallman <rms@gnu.org>
parents:
18564
diff
changeset
|
55 /* If sigpause is predefined, with POSIX_SIGNALS, |
c91e58230454
[sigmask] (SIGEMPTYMASK): Define to use sigmask.
Richard M. Stallman <rms@gnu.org>
parents:
18564
diff
changeset
|
56 let's assume it needs this kind of argument. |
c91e58230454
[sigmask] (SIGEMPTYMASK): Define to use sigmask.
Richard M. Stallman <rms@gnu.org>
parents:
18564
diff
changeset
|
57 This is true for Glibc 2.1. */ |
c91e58230454
[sigmask] (SIGEMPTYMASK): Define to use sigmask.
Richard M. Stallman <rms@gnu.org>
parents:
18564
diff
changeset
|
58 #undef SIGEMPTYMASK |
c91e58230454
[sigmask] (SIGEMPTYMASK): Define to use sigmask.
Richard M. Stallman <rms@gnu.org>
parents:
18564
diff
changeset
|
59 #define SIGEMPTYMASK sigmask (0) |
18564
ff178e0a7423
(sigpause): Don't define if already defined.
Richard M. Stallman <rms@gnu.org>
parents:
16220
diff
changeset
|
60 #endif |
18668
c91e58230454
[sigmask] (SIGEMPTYMASK): Define to use sigmask.
Richard M. Stallman <rms@gnu.org>
parents:
18564
diff
changeset
|
61 |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
62 #define sigblock(SIG) sys_sigblock (SIG) |
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
63 #define sigunblock(SIG) sys_sigunblock (SIG) |
14487
7b7cb366646c
[POSIX_SIGNALS] (sigsetmask): Don't define if already defined.
Richard M. Stallman <rms@gnu.org>
parents:
14261
diff
changeset
|
64 #ifndef sigsetmask |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
65 #define sigsetmask(SIG) sys_sigsetmask (SIG) |
14487
7b7cb366646c
[POSIX_SIGNALS] (sigsetmask): Don't define if already defined.
Richard M. Stallman <rms@gnu.org>
parents:
14261
diff
changeset
|
66 #endif |
563 | 67 #define sighold(SIG) ONLY_USED_IN_BSD_4_1 |
68 #define sigrelse(SIG) ONLY_USED_IN_BSD_4_1 | |
13332
b5f6bf37ffc5
[POSIX_SIGNALS] (signal): Undef before defining.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
69 #undef signal |
8361
2ea2644e07fb
[POSIX_SIGNALS] (signal): New definition.
Richard M. Stallman <rms@gnu.org>
parents:
7929
diff
changeset
|
70 #define signal(SIG,ACT) sys_signal(SIG,ACT) |
563 | 71 |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2122
diff
changeset
|
72 /* Whether this is what all systems want or not, this is what |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
73 appears to be assumed in the source, for example data.c:arith_error. */ |
10536 | 74 typedef RETSIGTYPE (*signal_handler_t) (/*int*/); |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2122
diff
changeset
|
75 |
10536 | 76 signal_handler_t sys_signal (/*int signal_number, signal_handler_t action*/); |
77 int sys_sigpause (/*sigset_t new_mask*/); | |
78 sigset_t sys_sigblock (/*sigset_t new_mask*/); | |
79 sigset_t sys_sigunblock (/*sigset_t new_mask*/); | |
80 sigset_t sys_sigsetmask (/*sigset_t new_mask*/); | |
563 | 81 |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
82 #define sys_sigdel(MASK,SIG) sigdelset (&MASK,SIG) |
563 | 83 |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
84 #else /* ! defined (POSIX_SIGNALS) */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
85 #ifdef USG5_4 |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
86 |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
87 #ifndef sigblock |
7929
c43f3a203133
[USG5_4] (sigblock): Use |, not &.
Richard M. Stallman <rms@gnu.org>
parents:
7903
diff
changeset
|
88 #define sigblock(sig) (sigprocmask (SIG_BLOCK, SIGEMPTYMASK | sig, NULL)) |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
89 #endif |
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
90 |
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
91 #define sigunblock(sig) (sigprocmask (SIG_SETMASK, SIGFULLMASK & ~(sig), NULL)) |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
92 |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
93 #else |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
94 #ifdef USG |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
95 |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
96 #define sigunblock(sig) |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
97 |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
98 #else |
563 | 99 |
100 #define sigunblock(SIG) \ | |
101 { SIGMASKTYPE omask = sigblock (SIGEMPTYMASK); sigsetmask (omask & ~SIG); } | |
102 | |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
103 #endif /* ! defined (USG) */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
104 #endif /* ! defined (USG5_4) */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
105 #endif /* ! defined (POSIX_SIGNALS) */ |
563 | 106 |
107 #ifndef SIGMASKTYPE | |
108 #define SIGMASKTYPE int | |
109 #endif | |
110 | |
111 #ifndef SIGEMPTYMASK | |
637 | 112 #define SIGEMPTYMASK (0) |
113 #endif | |
114 | |
115 #ifndef SIGFULLMASK | |
116 #define SIGFULLMASK (0xffffffff) | |
563 | 117 #endif |
118 | |
119 #ifndef sigmask | |
120 #define sigmask(no) (1L << ((no) - 1)) | |
121 #endif | |
122 | |
637 | 123 #ifndef sigunblock |
124 #define sigunblock(SIG) \ | |
125 { SIGMASKTYPE omask = sigblock (SIGFULLMASK); sigsetmask (omask & ~SIG); } | |
126 #endif | |
127 | |
128 #ifndef BSD4_1 | |
129 #define sigfree() sigsetmask (SIGEMPTYMASK) | |
15417 | 130 #endif /* not BSD4_1 */ |
637 | 131 |
563 | 132 #ifdef BSD4_1 |
133 #define SIGIO SIGTINT | |
16054
2402c860793b
(sigunblockx): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
15417
diff
changeset
|
134 /* sigfree is in sysdep.c */ |
15417 | 135 #endif /* BSD4_1 */ |
563 | 136 |
137 /* On bsd, [man says] kill does not accept a negative number to kill a pgrp. | |
138 Must do that using the killpg call. */ | |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16054
diff
changeset
|
139 #ifdef BSD_SYSTEM |
563 | 140 #define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo))) |
141 #else | |
9796
de7579c71881
[WINDOWSNT] (EMACS_KILLPG): Use win32_kill_process.
Richard M. Stallman <rms@gnu.org>
parents:
8361
diff
changeset
|
142 #ifdef WINDOWSNT |
15093
a18e7d41286a
(EMACS_KILLPG) [WINDOWSNT]: Invoke kill instead of win32_kill_process.
Richard M. Stallman <rms@gnu.org>
parents:
14487
diff
changeset
|
143 #define EMACS_KILLPG(gid, signo) (kill (gid, signo)) |
9796
de7579c71881
[WINDOWSNT] (EMACS_KILLPG): Use win32_kill_process.
Richard M. Stallman <rms@gnu.org>
parents:
8361
diff
changeset
|
144 #else |
563 | 145 #define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo))) |
146 #endif | |
9796
de7579c71881
[WINDOWSNT] (EMACS_KILLPG): Use win32_kill_process.
Richard M. Stallman <rms@gnu.org>
parents:
8361
diff
changeset
|
147 #endif |
563 | 148 |
149 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals | |
150 testing SIGCHLD. */ | |
151 #ifndef VMS | |
152 #ifdef SIGCLD | |
153 #ifndef SIGCHLD | |
154 #define SIGCHLD SIGCLD | |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
155 #endif /* SIGCHLD */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
156 #endif /* ! defined (SIGCLD) */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
157 #endif /* VMS */ |