Mercurial > emacs
annotate src/syssignal.h @ 21177:73f8ae8312c8
(exec_sentinel, read_process_output): Fstore_match_data => Fset_match_data.
(Fstart_process): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 14 Mar 1998 08:23:21 +0000 |
parents | ba03aa5d64d6 |
children | def858fcfe9a |
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) | |
20949
292cd2a2d600
(sigmask) [POSIX_SIGNALS]: Always define our own
Andreas Schwab <schwab@suse.de>
parents:
18668
diff
changeset
|
33 extern sigset_t empty_mask, full_mask; |
563 | 34 |
637 | 35 /* POSIX pretty much destroys any possibility of writing sigmask as a |
20949
292cd2a2d600
(sigmask) [POSIX_SIGNALS]: Always define our own
Andreas Schwab <schwab@suse.de>
parents:
18668
diff
changeset
|
36 macro in standard C. We always define our own version because the |
292cd2a2d600
(sigmask) [POSIX_SIGNALS]: Always define our own
Andreas Schwab <schwab@suse.de>
parents:
18668
diff
changeset
|
37 predefined macro in Glibc 2.1 is only provided for compatility for old |
292cd2a2d600
(sigmask) [POSIX_SIGNALS]: Always define our own
Andreas Schwab <schwab@suse.de>
parents:
18668
diff
changeset
|
38 programs that use int as signal mask type. */ |
292cd2a2d600
(sigmask) [POSIX_SIGNALS]: Always define our own
Andreas Schwab <schwab@suse.de>
parents:
18668
diff
changeset
|
39 #undef sigmask |
637 | 40 #ifdef __GNUC__ |
41 #define sigmask(SIG) \ | |
42 ({ \ | |
43 sigset_t _mask; \ | |
44 sigemptyset (&_mask); \ | |
45 sigaddset (&_mask, SIG); \ | |
46 _mask; \ | |
47 }) | |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
48 #else /* ! defined (__GNUC__) */ |
3485
c2dbfca5e1de
[POSIX] [!__GNUC__] (sys_sigmask): Add declaration.
Richard M. Stallman <rms@gnu.org>
parents:
3008
diff
changeset
|
49 extern sigset_t sys_sigmask (); |
637 | 50 #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
|
51 #endif /* ! defined (__GNUC__) */ |
624 | 52 |
20949
292cd2a2d600
(sigmask) [POSIX_SIGNALS]: Always define our own
Andreas Schwab <schwab@suse.de>
parents:
18668
diff
changeset
|
53 #undef sigpause |
292cd2a2d600
(sigmask) [POSIX_SIGNALS]: Always define our own
Andreas Schwab <schwab@suse.de>
parents:
18668
diff
changeset
|
54 #define sigpause(MASK) sigsuspend (&(MASK)) |
18668
c91e58230454
[sigmask] (SIGEMPTYMASK): Define to use sigmask.
Richard M. Stallman <rms@gnu.org>
parents:
18564
diff
changeset
|
55 |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
56 #define sigblock(SIG) sys_sigblock (SIG) |
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
57 #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
|
58 #ifndef sigsetmask |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
59 #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
|
60 #endif |
563 | 61 #define sighold(SIG) ONLY_USED_IN_BSD_4_1 |
62 #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
|
63 #undef signal |
8361
2ea2644e07fb
[POSIX_SIGNALS] (signal): New definition.
Richard M. Stallman <rms@gnu.org>
parents:
7929
diff
changeset
|
64 #define signal(SIG,ACT) sys_signal(SIG,ACT) |
563 | 65 |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2122
diff
changeset
|
66 /* 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
|
67 appears to be assumed in the source, for example data.c:arith_error. */ |
10536 | 68 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
|
69 |
10536 | 70 signal_handler_t sys_signal (/*int signal_number, signal_handler_t action*/); |
71 sigset_t sys_sigblock (/*sigset_t new_mask*/); | |
72 sigset_t sys_sigunblock (/*sigset_t new_mask*/); | |
73 sigset_t sys_sigsetmask (/*sigset_t new_mask*/); | |
563 | 74 |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
75 #define sys_sigdel(MASK,SIG) sigdelset (&MASK,SIG) |
563 | 76 |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
77 #else /* ! defined (POSIX_SIGNALS) */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
78 #ifdef USG5_4 |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
79 |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
80 #ifndef sigblock |
7929
c43f3a203133
[USG5_4] (sigblock): Use |, not &.
Richard M. Stallman <rms@gnu.org>
parents:
7903
diff
changeset
|
81 #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
|
82 #endif |
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
83 |
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
84 #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
|
85 |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
86 #else |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
87 #ifdef USG |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
88 |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
89 #define sigunblock(sig) |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
90 |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
91 #else |
563 | 92 |
93 #define sigunblock(SIG) \ | |
94 { SIGMASKTYPE omask = sigblock (SIGEMPTYMASK); sigsetmask (omask & ~SIG); } | |
95 | |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
96 #endif /* ! defined (USG) */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
97 #endif /* ! defined (USG5_4) */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
98 #endif /* ! defined (POSIX_SIGNALS) */ |
563 | 99 |
100 #ifndef SIGMASKTYPE | |
101 #define SIGMASKTYPE int | |
102 #endif | |
103 | |
104 #ifndef SIGEMPTYMASK | |
637 | 105 #define SIGEMPTYMASK (0) |
106 #endif | |
107 | |
108 #ifndef SIGFULLMASK | |
109 #define SIGFULLMASK (0xffffffff) | |
563 | 110 #endif |
111 | |
112 #ifndef sigmask | |
113 #define sigmask(no) (1L << ((no) - 1)) | |
114 #endif | |
115 | |
637 | 116 #ifndef sigunblock |
117 #define sigunblock(SIG) \ | |
118 { SIGMASKTYPE omask = sigblock (SIGFULLMASK); sigsetmask (omask & ~SIG); } | |
119 #endif | |
120 | |
121 #ifndef BSD4_1 | |
122 #define sigfree() sigsetmask (SIGEMPTYMASK) | |
15417 | 123 #endif /* not BSD4_1 */ |
637 | 124 |
563 | 125 #ifdef BSD4_1 |
126 #define SIGIO SIGTINT | |
16054
2402c860793b
(sigunblockx): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
15417
diff
changeset
|
127 /* sigfree is in sysdep.c */ |
15417 | 128 #endif /* BSD4_1 */ |
563 | 129 |
130 /* On bsd, [man says] kill does not accept a negative number to kill a pgrp. | |
131 Must do that using the killpg call. */ | |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16054
diff
changeset
|
132 #ifdef BSD_SYSTEM |
563 | 133 #define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo))) |
134 #else | |
9796
de7579c71881
[WINDOWSNT] (EMACS_KILLPG): Use win32_kill_process.
Richard M. Stallman <rms@gnu.org>
parents:
8361
diff
changeset
|
135 #ifdef WINDOWSNT |
15093
a18e7d41286a
(EMACS_KILLPG) [WINDOWSNT]: Invoke kill instead of win32_kill_process.
Richard M. Stallman <rms@gnu.org>
parents:
14487
diff
changeset
|
136 #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
|
137 #else |
563 | 138 #define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo))) |
139 #endif | |
9796
de7579c71881
[WINDOWSNT] (EMACS_KILLPG): Use win32_kill_process.
Richard M. Stallman <rms@gnu.org>
parents:
8361
diff
changeset
|
140 #endif |
563 | 141 |
142 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals | |
143 testing SIGCHLD. */ | |
144 #ifndef VMS | |
145 #ifdef SIGCLD | |
146 #ifndef SIGCHLD | |
147 #define SIGCHLD SIGCLD | |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
148 #endif /* SIGCHLD */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
149 #endif /* ! defined (SIGCLD) */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
150 #endif /* VMS */ |