1 /* syssignal.h - System-dependent definitions for signals.
2 Copyright (C) 1993 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
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)
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.
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, 675 Mass Ave, Cambridge, MA 02139, USA. */
22 /* Don't #include <signal.h>. That header should always be #included
23 before "config.h", because some configuration files (like s/hpux.h)
24 indicate that SIGIO doesn't work by #undef-ing SIGIO. If this file
25 #includes <signal.h>, then that will re-#define SIGIO and confuse
28 #define SIGMASKTYPE sigset_t
30 #define SIGEMPTYMASK (empty_mask)
31 #define SIGFULLMASK (full_mask)
32 extern sigset_t empty_mask
, full_mask
, temp_mask
;
34 /* POSIX pretty much destroys any possibility of writing sigmask as a
35 macro in standard C. */
38 #define sigmask(SIG) \
41 sigemptyset (&_mask); \
42 sigaddset (&_mask, SIG); \
45 #else /* ! defined (__GNUC__) */
46 extern sigset_t
sys_sigmask ();
47 #define sigmask(SIG) (sys_sigmask (SIG))
48 #endif /* ! defined (__GNUC__) */
51 #define sigpause(SIG) sys_sigpause (SIG)
52 #define sigblock(SIG) sys_sigblock (SIG)
53 #define sigunblock(SIG) sys_sigunblock (SIG)
54 #define sigsetmask(SIG) sys_sigsetmask (SIG)
55 #define sighold(SIG) ONLY_USED_IN_BSD_4_1
56 #define sigrelse(SIG) ONLY_USED_IN_BSD_4_1
58 #define signal(SIG,ACT) sys_signal(SIG,ACT)
60 /* Whether this is what all systems want or not, this is what
61 appears to be assumed in the source, for example data.c:arith_error. */
62 typedef RETSIGTYPE (*signal_handler_t
) (/*int*/);
64 signal_handler_t
sys_signal (/*int signal_number, signal_handler_t action*/);
65 int sys_sigpause (/*sigset_t new_mask*/);
66 sigset_t
sys_sigblock (/*sigset_t new_mask*/);
67 sigset_t
sys_sigunblock (/*sigset_t new_mask*/);
68 sigset_t
sys_sigsetmask (/*sigset_t new_mask*/);
70 #define sys_sigdel(MASK,SIG) sigdelset (&MASK,SIG)
72 #else /* ! defined (POSIX_SIGNALS) */
76 #define sigblock(sig) (sigprocmask (SIG_BLOCK, SIGEMPTYMASK | sig, NULL))
79 #define sigunblock(sig) (sigprocmask (SIG_SETMASK, SIGFULLMASK & ~(sig), NULL))
84 #define sigunblock(sig)
88 #define sigunblock(SIG) \
89 { SIGMASKTYPE omask = sigblock (SIGEMPTYMASK); sigsetmask (omask & ~SIG); }
91 #endif /* ! defined (USG) */
92 #endif /* ! defined (USG5_4) */
93 #endif /* ! defined (POSIX_SIGNALS) */
96 #define SIGMASKTYPE int
100 #define SIGEMPTYMASK (0)
104 #define SIGFULLMASK (0xffffffff)
108 #define sigmask(no) (1L << ((no) - 1))
112 #define sigunblock(SIG) \
113 { SIGMASKTYPE omask = sigblock (SIGFULLMASK); sigsetmask (omask & ~SIG); }
116 /* It would be very nice if we could somehow clean up all this trash. */
119 #define sigfree() sigsetmask (SIGEMPTYMASK)
120 #define sigholdx(sig) sigsetmask (sigmask (sig))
121 #define sigblockx(sig) sigblock (sigmask (sig))
122 #define sigunblockx(sig) sigblock (SIGEMPTYMASK)
123 #define sigpausex(sig) sigpause (0)
127 #define SIGIO SIGTINT
128 /* sigfree and sigholdx are in sysdep.c */
129 #define sigblockx(sig) sighold (sig)
130 #define sigunblockx(sig) sigrelse (sig)
131 #define sigpausex(sig) sigpause (sig)
132 #endif /* ! defined (BSD4_1) */
134 /* On bsd, [man says] kill does not accept a negative number to kill a pgrp.
135 Must do that using the killpg call. */
137 #define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo)))
140 #define EMACS_KILLPG(gid, signo) (win32_kill_process (gid, signo))
142 #define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo)))
146 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
151 #define SIGCHLD SIGCLD
153 #endif /* ! defined (SIGCLD) */