Mercurial > emacs
annotate src/syssignal.h @ 56467:e2448fa3dca4
(Regexps): Delete redundant definition of `symbol' in description of
`\_>'. It already occurs in the description of `\_<'.
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Sun, 18 Jul 2004 14:01:57 +0000 |
parents | c208f88ccc56 |
children | 59945307b86b 46882e012e30 4c90ffeb71c5 |
rev | line source |
---|---|
563 | 1 /* syssignal.h - System-dependent definitions for signals. |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
2 Copyright (C) 1993, 1999 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 |
55308
c208f88ccc56
(init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
21 extern void init_signals P_ ((void)); |
c208f88ccc56
(init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
22 |
563 | 23 #ifdef POSIX_SIGNALS |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2122
diff
changeset
|
24 |
10135 | 25 /* 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
|
26 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
|
27 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
|
28 #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
|
29 things. */ |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2122
diff
changeset
|
30 |
563 | 31 #define SIGMASKTYPE sigset_t |
32 | |
33 #define SIGEMPTYMASK (empty_mask) | |
34 #define SIGFULLMASK (full_mask) | |
20949
292cd2a2d600
(sigmask) [POSIX_SIGNALS]: Always define our own
Andreas Schwab <schwab@suse.de>
parents:
18668
diff
changeset
|
35 extern sigset_t empty_mask, full_mask; |
563 | 36 |
637 | 37 /* 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
|
38 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
|
39 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
|
40 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
|
41 #undef sigmask |
637 | 42 #ifdef __GNUC__ |
43 #define sigmask(SIG) \ | |
44 ({ \ | |
45 sigset_t _mask; \ | |
46 sigemptyset (&_mask); \ | |
47 sigaddset (&_mask, SIG); \ | |
48 _mask; \ | |
49 }) | |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
50 #else /* ! defined (__GNUC__) */ |
3485
c2dbfca5e1de
[POSIX] [!__GNUC__] (sys_sigmask): Add declaration.
Richard M. Stallman <rms@gnu.org>
parents:
3008
diff
changeset
|
51 extern sigset_t sys_sigmask (); |
637 | 52 #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
|
53 #endif /* ! defined (__GNUC__) */ |
624 | 54 |
20949
292cd2a2d600
(sigmask) [POSIX_SIGNALS]: Always define our own
Andreas Schwab <schwab@suse.de>
parents:
18668
diff
changeset
|
55 #undef sigpause |
292cd2a2d600
(sigmask) [POSIX_SIGNALS]: Always define our own
Andreas Schwab <schwab@suse.de>
parents:
18668
diff
changeset
|
56 #define sigpause(MASK) sigsuspend (&(MASK)) |
18668
c91e58230454
[sigmask] (SIGEMPTYMASK): Define to use sigmask.
Richard M. Stallman <rms@gnu.org>
parents:
18564
diff
changeset
|
57 |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
58 #define sigblock(SIG) sys_sigblock (SIG) |
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
59 #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
|
60 #ifndef sigsetmask |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
61 #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
|
62 #endif |
563 | 63 #define sighold(SIG) ONLY_USED_IN_BSD_4_1 |
64 #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
|
65 #undef signal |
8361
2ea2644e07fb
[POSIX_SIGNALS] (signal): New definition.
Richard M. Stallman <rms@gnu.org>
parents:
7929
diff
changeset
|
66 #define signal(SIG,ACT) sys_signal(SIG,ACT) |
563 | 67 |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2122
diff
changeset
|
68 /* 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
|
69 appears to be assumed in the source, for example data.c:arith_error. */ |
10536 | 70 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
|
71 |
21932
def858fcfe9a
Declare init_signals and add prototypes.
Andreas Schwab <schwab@suse.de>
parents:
21010
diff
changeset
|
72 signal_handler_t sys_signal P_ ((int signal_number, signal_handler_t action)); |
def858fcfe9a
Declare init_signals and add prototypes.
Andreas Schwab <schwab@suse.de>
parents:
21010
diff
changeset
|
73 sigset_t sys_sigblock P_ ((sigset_t new_mask)); |
def858fcfe9a
Declare init_signals and add prototypes.
Andreas Schwab <schwab@suse.de>
parents:
21010
diff
changeset
|
74 sigset_t sys_sigunblock P_ ((sigset_t new_mask)); |
def858fcfe9a
Declare init_signals and add prototypes.
Andreas Schwab <schwab@suse.de>
parents:
21010
diff
changeset
|
75 sigset_t sys_sigsetmask P_ ((sigset_t new_mask)); |
563 | 76 |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
77 #define sys_sigdel(MASK,SIG) sigdelset (&MASK,SIG) |
563 | 78 |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
79 #else /* ! defined (POSIX_SIGNALS) */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
80 #ifdef USG5_4 |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
81 |
29811
f3db799f7b1e
(sigblock, sigunblock) [USG5_4]: Set
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
82 extern SIGMASKTYPE sigprocmask_set; |
f3db799f7b1e
(sigblock, sigunblock) [USG5_4]: Set
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
83 |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
84 #ifndef sigblock |
29811
f3db799f7b1e
(sigblock, sigunblock) [USG5_4]: Set
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
85 #define sigblock(sig) \ |
f3db799f7b1e
(sigblock, sigunblock) [USG5_4]: Set
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
86 (sigprocmask_set = SIGEMPTYMASK | (sig), \ |
f3db799f7b1e
(sigblock, sigunblock) [USG5_4]: Set
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
87 sigprocmask (SIG_BLOCK, &sigprocmask_set, NULL)) |
7903
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
88 #endif |
40bb379c9550
(sigblock) [USG5_4]: Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
3485
diff
changeset
|
89 |
40677
31330b54d542
(sigunblock): Don't define if already defined.
Eli Zaretskii <eliz@gnu.org>
parents:
33408
diff
changeset
|
90 #ifndef sigunblock |
29811
f3db799f7b1e
(sigblock, sigunblock) [USG5_4]: Set
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
91 #define sigunblock(sig) \ |
f3db799f7b1e
(sigblock, sigunblock) [USG5_4]: Set
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
92 (sigprocmask_set = SIGFULLMASK & ~(sig), \ |
f3db799f7b1e
(sigblock, sigunblock) [USG5_4]: Set
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
93 sigprocmask (SIG_SETMASK, &sigprocmask_set, NULL)) |
40677
31330b54d542
(sigunblock): Don't define if already defined.
Eli Zaretskii <eliz@gnu.org>
parents:
33408
diff
changeset
|
94 #endif |
2122
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 #else |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
97 #ifdef USG |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
98 |
40677
31330b54d542
(sigunblock): Don't define if already defined.
Eli Zaretskii <eliz@gnu.org>
parents:
33408
diff
changeset
|
99 #ifndef sigunblock |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40677
diff
changeset
|
100 #define sigunblock(sig) |
40677
31330b54d542
(sigunblock): Don't define if already defined.
Eli Zaretskii <eliz@gnu.org>
parents:
33408
diff
changeset
|
101 #endif |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
102 |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
103 #else |
563 | 104 |
40677
31330b54d542
(sigunblock): Don't define if already defined.
Eli Zaretskii <eliz@gnu.org>
parents:
33408
diff
changeset
|
105 #ifndef sigunblock |
563 | 106 #define sigunblock(SIG) \ |
107 { SIGMASKTYPE omask = sigblock (SIGEMPTYMASK); sigsetmask (omask & ~SIG); } | |
40677
31330b54d542
(sigunblock): Don't define if already defined.
Eli Zaretskii <eliz@gnu.org>
parents:
33408
diff
changeset
|
108 #endif |
563 | 109 |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
110 #endif /* ! defined (USG) */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
111 #endif /* ! defined (USG5_4) */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
112 #endif /* ! defined (POSIX_SIGNALS) */ |
563 | 113 |
114 #ifndef SIGMASKTYPE | |
115 #define SIGMASKTYPE int | |
116 #endif | |
117 | |
118 #ifndef SIGEMPTYMASK | |
637 | 119 #define SIGEMPTYMASK (0) |
120 #endif | |
121 | |
122 #ifndef SIGFULLMASK | |
123 #define SIGFULLMASK (0xffffffff) | |
563 | 124 #endif |
125 | |
126 #ifndef sigmask | |
127 #define sigmask(no) (1L << ((no) - 1)) | |
128 #endif | |
129 | |
637 | 130 #ifndef sigunblock |
131 #define sigunblock(SIG) \ | |
132 { SIGMASKTYPE omask = sigblock (SIGFULLMASK); sigsetmask (omask & ~SIG); } | |
133 #endif | |
134 | |
135 #ifndef BSD4_1 | |
136 #define sigfree() sigsetmask (SIGEMPTYMASK) | |
15417 | 137 #endif /* not BSD4_1 */ |
637 | 138 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
139 #if defined (SIGINFO) && defined (BROKEN_SIGINFO) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
140 #undef SIGINFO |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
141 #endif |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
142 #if defined (SIGIO) && defined (BROKEN_SIGIO) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
143 #undef SIGIO |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
144 #endif |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
145 #if defined (SIGPOLL) && defined (BROKEN_SIGPOLL) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
146 #undef SIGPOLL |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
147 #endif |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
148 #if defined (SIGTSTP) && defined (BROKEN_SIGTSTP) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
149 #undef SIGTSTP |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
150 #endif |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
151 #if defined (SIGURG) && defined (BROKEN_SIGURG) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
152 #undef SIGURG |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
153 #endif |
33408
f07928f0dede
Pay attention to BROKEN_SIGAIO and BROKEN_SIGPTY.
Kenichi Handa <handa@m17n.org>
parents:
29811
diff
changeset
|
154 #if defined (SIGAIO) && defined (BROKEN_SIGAIO) |
f07928f0dede
Pay attention to BROKEN_SIGAIO and BROKEN_SIGPTY.
Kenichi Handa <handa@m17n.org>
parents:
29811
diff
changeset
|
155 #undef SIGAIO |
f07928f0dede
Pay attention to BROKEN_SIGAIO and BROKEN_SIGPTY.
Kenichi Handa <handa@m17n.org>
parents:
29811
diff
changeset
|
156 #endif |
f07928f0dede
Pay attention to BROKEN_SIGAIO and BROKEN_SIGPTY.
Kenichi Handa <handa@m17n.org>
parents:
29811
diff
changeset
|
157 #if defined (SIGPTY) && defined (BROKEN_SIGPTY) |
f07928f0dede
Pay attention to BROKEN_SIGAIO and BROKEN_SIGPTY.
Kenichi Handa <handa@m17n.org>
parents:
29811
diff
changeset
|
158 #undef SIGPTY |
f07928f0dede
Pay attention to BROKEN_SIGAIO and BROKEN_SIGPTY.
Kenichi Handa <handa@m17n.org>
parents:
29811
diff
changeset
|
159 #endif |
f07928f0dede
Pay attention to BROKEN_SIGAIO and BROKEN_SIGPTY.
Kenichi Handa <handa@m17n.org>
parents:
29811
diff
changeset
|
160 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
161 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
162 #if NSIG < NSIG_MINIMUM |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
163 # ifdef NSIG |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
164 # undef NSIG |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
165 # endif |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
166 # define NSIG NSIG_MINIMUM |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
167 #endif |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
168 |
563 | 169 #ifdef BSD4_1 |
170 #define SIGIO SIGTINT | |
16054
2402c860793b
(sigunblockx): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
15417
diff
changeset
|
171 /* sigfree is in sysdep.c */ |
15417 | 172 #endif /* BSD4_1 */ |
563 | 173 |
174 /* On bsd, [man says] kill does not accept a negative number to kill a pgrp. | |
175 Must do that using the killpg call. */ | |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16054
diff
changeset
|
176 #ifdef BSD_SYSTEM |
563 | 177 #define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo))) |
178 #else | |
9796
de7579c71881
[WINDOWSNT] (EMACS_KILLPG): Use win32_kill_process.
Richard M. Stallman <rms@gnu.org>
parents:
8361
diff
changeset
|
179 #ifdef WINDOWSNT |
15093
a18e7d41286a
(EMACS_KILLPG) [WINDOWSNT]: Invoke kill instead of win32_kill_process.
Richard M. Stallman <rms@gnu.org>
parents:
14487
diff
changeset
|
180 #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
|
181 #else |
563 | 182 #define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo))) |
183 #endif | |
9796
de7579c71881
[WINDOWSNT] (EMACS_KILLPG): Use win32_kill_process.
Richard M. Stallman <rms@gnu.org>
parents:
8361
diff
changeset
|
184 #endif |
563 | 185 |
186 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals | |
187 testing SIGCHLD. */ | |
188 #ifndef VMS | |
189 #ifdef SIGCLD | |
190 #ifndef SIGCHLD | |
191 #define SIGCHLD SIGCLD | |
2122
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
192 #endif /* SIGCHLD */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
193 #endif /* ! defined (SIGCLD) */ |
f3c105f296b2
* syssignal.h (sigunblock): Add definition which works under SYSVr4.
Jim Blandy <jimb@redhat.com>
parents:
637
diff
changeset
|
194 #endif /* VMS */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
195 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
196 #ifndef HAVE_STRSIGNAL |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
197 /* strsignal is in sysdep.c */ |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
198 char *strsignal (); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
21932
diff
changeset
|
199 #endif |
52401 | 200 |
201 /* arch-tag: 4580e86a-340d-4574-9e11-a742b6e1a152 | |
202 (do not change this comment) */ |