annotate src/syssignal.h @ 22:8fc7fe29b841 r19-15b94

Import from CVS: tag r19-15b94
author cvs
date Mon, 13 Aug 2007 08:50:29 +0200
parents bcdc7deadc19
children 131b0175ea99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* syssignal.h - System-dependent definitions for signals.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1992, 1993 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: FSF 19.30. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 #ifndef _XEMACS_SYSSIGNAL_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #define _XEMACS_SYSSIGNAL_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 /* In the old world, one could not #include <signal.h> here. The party line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 was that that header should always be #included before <config.h>, because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 some configuration files (like s/hpux.h) indicate that SIGIO doesn't work
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 by #undef-ing SIGIO, and if this file #includes <signal.h>, then that will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 re-#define SIGIO and confuse things.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 This was, however, a completely fucked up state of affairs, because on some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 systems it's necessary for the s/m files to #define things in order to get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 <signal.h> to provide the right typedefs, etc. And it's generally a broken
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 concept for <config.h> to not be the very very first file included.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 So instead of #undef'ing SIGIO in the various s/m files, I've changed them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 to define BROKEN_SIGIO instead, then we (syssignal.h) do an #undef SIGIO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 at the end, after including signal.h. Therefore, it's important that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 <signal.h> not be included after "syssignal.h", but that's the normal state:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 nothing should be directly including <signal.h> these days.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 -- jwz, 29-nov-93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #include <signal.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #include <errno.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 /* SIGPOLL is the SVR4 signal. Those systems generally define
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 SIGIO as an alias for SIGPOLL, but just in case ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #if !defined (SIGIO) && defined (SIGPOLL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 # define SIGIO SIGPOLL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 #if defined (BROKEN_SIGIO)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 # undef SIGIO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 testing SIGCHLD. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 #if !defined (VMS) && defined (SIGCLD) && !defined (SIGCHLD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 # define SIGCHLD SIGCLD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 #endif /* SIGCHLD */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 #ifdef BROKEN_SIGCHLD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 #undef SIGCHLD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 #ifdef SIGCHLD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 #define EMACS_BLOCK_SIGCHLD EMACS_BLOCK_SIGNAL (SIGCHLD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 #define EMACS_UNBLOCK_SIGCHLD EMACS_UNBLOCK_SIGNAL (SIGCHLD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 #define EMACS_BLOCK_SIGCHLD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 #define EMACS_UNBLOCK_SIGCHLD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 /* According to W.R. Stevens __Advanced Programming in the Unix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 Environment__, there are four different paradigms for handling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 signals. We use autoconf to tell us which one applies.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 Note that on some systems, more than one paradigm is implemented
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (typically, the POSIX sigaction/sigprocmask and either the older
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 SYSV or BSD way). In such a case, we prefer the POSIX way.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 NOTE: We use EMACS_* macros for most signal operations, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 just signal() for the standard signal-setting operation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 Perhaps we should change this to EMACS_SIGNAL(), but that runs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 the risk of someone forgetting this convention and calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 signal() directly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
91 #ifndef NeXT
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 0
diff changeset
92 typedef SIGTYPE (*signal_handler_t) (int);
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
93 #endif
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 0
diff changeset
94
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 #if defined (HAVE_SIGPROCMASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 /* The POSIX way (sigaction, sigprocmask, sigpending, sigsuspend) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 extern signal_handler_t sys_do_signal (int signal_number,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 signal_handler_t action);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 /* Provide our own version of signal(), that calls sigaction(). The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 name is not sys_signal() because a function of that name exists in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 libenergize.a */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 #undef signal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 #define signal sys_do_signal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 #define EMACS_BLOCK_SIGNAL(sig) do \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 sigset_t _mask; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 sigemptyset (&_mask); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 sigaddset (&_mask, sig); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 sigprocmask (SIG_BLOCK, &_mask, NULL); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 #define EMACS_UNBLOCK_SIGNAL(sig) do \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 sigset_t _mask; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 sigemptyset (&_mask); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 sigaddset (&_mask, sig); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 sigprocmask (SIG_UNBLOCK, &_mask, NULL); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 #define EMACS_UNBLOCK_ALL_SIGNALS() do \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 sigset_t _mask; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 sigemptyset (&_mask); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 sigprocmask (SIG_SETMASK, &_mask, NULL); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 #define EMACS_WAIT_FOR_SIGNAL(sig) do \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 sigset_t _mask; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 sigprocmask (0, NULL, &_mask); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 sigdelset (&_mask, sig); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 sigsuspend (&_mask); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 #define EMACS_REESTABLISH_SIGNAL(sig, handler)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 #elif defined (HAVE_SIGBLOCK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 /* The older BSD way (signal/sigvec, sigblock, sigsetmask, sigpause) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 /* It's OK to use signal() here directly. No unreliable signal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 problems. However, we use sigvec() because it allows us to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 request interruptible I/O. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 #define signal sys_do_signal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 /* Is it necessary to define sigmask like this? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 #ifndef sigmask
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 # define sigmask(no) (1L << ((no) - 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 #define EMACS_BLOCK_SIGNAL(sig) sigblock (sigmask (sig))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 #define EMACS_UNBLOCK_SIGNAL(sig) sigsetmask (sigblock (0) & ~sigmask (sig))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 #define EMACS_UNBLOCK_ALL_SIGNALS() sigsetmask (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 #define EMACS_WAIT_FOR_SIGNAL(sig) do \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 int _mask = sigblock (0); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 sigpause (_mask & ~sigmask (sig)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 #define EMACS_REESTABLISH_SIGNAL(sig, handler)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 #elif defined (HAVE_SIGHOLD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 /* The older SYSV way (signal/sigset, sighold, sigrelse, sigignore,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 sigpause) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 #define signal sigset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 #define EMACS_BLOCK_SIGNAL(sig) sighold (sig)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 #define EMACS_UNBLOCK_SIGNAL(sig) sigrelse (sig)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 /* #### There's not really any simple way to implement this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 Since EMACS_UNBLOCK_ALL_SIGNALS() is only called once (at startup),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 it's probably OK to just ignore it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 #define EMACS_UNBLOCK_ALL_SIGNALS() 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 #define EMACS_WAIT_FOR_SIGNAL(sig) sigpause (sig)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 #define EMACS_REESTABLISH_SIGNAL(sig, handler)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 /* The oldest SYSV way (signal only; unreliable signals) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 /* Old USG systems don't really have signal blocking.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 We indicate this by not defining EMACS_BLOCK_SIGNAL or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 EMACS_WAIT_FOR_SIGNAL. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 #define EMACS_UNBLOCK_SIGNAL(sig) 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 #define EMACS_UNBLOCK_ALL_SIGNALS() 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 #define EMACS_REESTABLISH_SIGNAL(sig, handler) do \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 int old_errno = errno; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 signal (sig, handler); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 errno = old_errno; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 /* Under SYSV, setting a signal handler for SIGCLD causes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 SIGCLD to immediately be sent if there any unwaited processes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 out there. This means that the SIGCLD handler *must* call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 wait() to reap the status of all processes -- it cannot
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 simply set a flag and then reestablish the handler, because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 it will get called again, infinitely. We only need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 worry about this on systems where signals need to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 reestablished (SYSV Release 2 and earlier). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 #define OBNOXIOUS_SYSV_SIGCLD_BEHAVIOR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 /* On bsd, [man says] kill does not accept a negative number to kill a pgrp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 Must do that using the killpg call. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 #ifdef BSD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 #define EMACS_KILLPG(gid, signo) killpg (gid, signo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 #ifdef WINDOWSNT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 #define EMACS_KILLPG(gid, signo) (win32_kill_process (gid, signo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 #define EMACS_KILLPG(gid, signo) kill (-(gid), signo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 #ifdef VMS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 # define sys_siglist sys_errlist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 # define NSIG sys_nerr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 #endif /* VMS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 #ifndef NSIG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 # define NSIG (SIGUSR2+1) /* guess how many elements are in sys_siglist... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 /* SYS_SIGLIST_DECLARED is determined by configure. On Linux, it seems,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 configure incorrectly fails to find it, so s/linux.h defines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 HAVE_SYS_SIGLIST. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 #if !defined (SYS_SIGLIST_DECLARED) && !defined (HAVE_SYS_SIGLIST)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 extern CONST char *sys_siglist[];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 #ifdef SIGDANGER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 extern SIGTYPE memory_warning_signal (int sig);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 #endif /* _XEMACS_SYSSIGNAL_H_ */