Add support for large files, 64-bit Solaris, system locale codings.
[bpt/emacs.git] / src / syssignal.h
CommitLineData
9ab9afa9 1/* syssignal.h - System-dependent definitions for signals.
68c45bf0 2 Copyright (C) 1993, 1999 Free Software Foundation, Inc.
9ab9afa9
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
7c938215 8the Free Software Foundation; either version 2, or (at your option)
9ab9afa9
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
9ab9afa9
JB
20
21#ifdef POSIX_SIGNALS
00eaaa32 22
c3aa5fec 23/* Don't #include <signal.h>. That header should always be #included
cf026b25
JB
24 before "config.h", because some configuration files (like s/hpux.h)
25 indicate that SIGIO doesn't work by #undef-ing SIGIO. If this file
26 #includes <signal.h>, then that will re-#define SIGIO and confuse
27 things. */
00eaaa32 28
9ab9afa9
JB
29#define SIGMASKTYPE sigset_t
30
31#define SIGEMPTYMASK (empty_mask)
32#define SIGFULLMASK (full_mask)
47b682b7 33extern sigset_t empty_mask, full_mask;
030f4475 34extern void init_signals P_ ((void));
9ab9afa9 35
1b1f8f85 36/* POSIX pretty much destroys any possibility of writing sigmask as a
47b682b7
AS
37 macro in standard C. We always define our own version because the
38 predefined macro in Glibc 2.1 is only provided for compatility for old
39 programs that use int as signal mask type. */
40#undef sigmask
1b1f8f85
JB
41#ifdef __GNUC__
42#define sigmask(SIG) \
43 ({ \
44 sigset_t _mask; \
45 sigemptyset (&_mask); \
46 sigaddset (&_mask, SIG); \
47 _mask; \
48 })
985a35a3 49#else /* ! defined (__GNUC__) */
9bd67a37 50extern sigset_t sys_sigmask ();
1b1f8f85 51#define sigmask(SIG) (sys_sigmask (SIG))
985a35a3 52#endif /* ! defined (__GNUC__) */
1b1f8f85 53
47b682b7
AS
54#undef sigpause
55#define sigpause(MASK) sigsuspend (&(MASK))
9f910b50 56
69037d5a
RS
57#define sigblock(SIG) sys_sigblock (SIG)
58#define sigunblock(SIG) sys_sigunblock (SIG)
cc210d67 59#ifndef sigsetmask
69037d5a 60#define sigsetmask(SIG) sys_sigsetmask (SIG)
cc210d67 61#endif
9ab9afa9
JB
62#define sighold(SIG) ONLY_USED_IN_BSD_4_1
63#define sigrelse(SIG) ONLY_USED_IN_BSD_4_1
6c8a1e24 64#undef signal
9c063f29 65#define signal(SIG,ACT) sys_signal(SIG,ACT)
9ab9afa9 66
00eaaa32 67/* Whether this is what all systems want or not, this is what
69037d5a 68 appears to be assumed in the source, for example data.c:arith_error. */
667da7f5 69typedef RETSIGTYPE (*signal_handler_t) (/*int*/);
00eaaa32 70
030f4475
AS
71signal_handler_t sys_signal P_ ((int signal_number, signal_handler_t action));
72sigset_t sys_sigblock P_ ((sigset_t new_mask));
73sigset_t sys_sigunblock P_ ((sigset_t new_mask));
74sigset_t sys_sigsetmask P_ ((sigset_t new_mask));
9ab9afa9 75
69037d5a 76#define sys_sigdel(MASK,SIG) sigdelset (&MASK,SIG)
9ab9afa9 77
985a35a3
JB
78#else /* ! defined (POSIX_SIGNALS) */
79#ifdef USG5_4
80
69037d5a 81#ifndef sigblock
d8b3c190 82#define sigblock(sig) (sigprocmask (SIG_BLOCK, SIGEMPTYMASK | sig, NULL))
69037d5a
RS
83#endif
84
85#define sigunblock(sig) (sigprocmask (SIG_SETMASK, SIGFULLMASK & ~(sig), NULL))
985a35a3
JB
86
87#else
88#ifdef USG
89
90#define sigunblock(sig)
91
92#else
9ab9afa9
JB
93
94#define sigunblock(SIG) \
95{ SIGMASKTYPE omask = sigblock (SIGEMPTYMASK); sigsetmask (omask & ~SIG); }
96
985a35a3
JB
97#endif /* ! defined (USG) */
98#endif /* ! defined (USG5_4) */
99#endif /* ! defined (POSIX_SIGNALS) */
9ab9afa9
JB
100
101#ifndef SIGMASKTYPE
102#define SIGMASKTYPE int
103#endif
104
105#ifndef SIGEMPTYMASK
1b1f8f85
JB
106#define SIGEMPTYMASK (0)
107#endif
108
109#ifndef SIGFULLMASK
110#define SIGFULLMASK (0xffffffff)
9ab9afa9
JB
111#endif
112
113#ifndef sigmask
114#define sigmask(no) (1L << ((no) - 1))
115#endif
116
1b1f8f85
JB
117#ifndef sigunblock
118#define sigunblock(SIG) \
119{ SIGMASKTYPE omask = sigblock (SIGFULLMASK); sigsetmask (omask & ~SIG); }
120#endif
121
1b1f8f85
JB
122#ifndef BSD4_1
123#define sigfree() sigsetmask (SIGEMPTYMASK)
ea973b10 124#endif /* not BSD4_1 */
1b1f8f85 125
68c45bf0
PE
126#if defined (SIGINFO) && defined (BROKEN_SIGINFO)
127#undef SIGINFO
128#endif
129#if defined (SIGIO) && defined (BROKEN_SIGIO)
130#undef SIGIO
131#endif
132#if defined (SIGPOLL) && defined (BROKEN_SIGPOLL)
133#undef SIGPOLL
134#endif
135#if defined (SIGTSTP) && defined (BROKEN_SIGTSTP)
136#undef SIGTSTP
137#endif
138#if defined (SIGURG) && defined (BROKEN_SIGURG)
139#undef SIGURG
140#endif
141
142#if NSIG < NSIG_MINIMUM
143# ifdef NSIG
144# undef NSIG
145# endif
146# define NSIG NSIG_MINIMUM
147#endif
148
9ab9afa9
JB
149#ifdef BSD4_1
150#define SIGIO SIGTINT
645280b7 151/* sigfree is in sysdep.c */
ea973b10 152#endif /* BSD4_1 */
9ab9afa9
JB
153
154/* On bsd, [man says] kill does not accept a negative number to kill a pgrp.
155 Must do that using the killpg call. */
6df54671 156#ifdef BSD_SYSTEM
9ab9afa9
JB
157#define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo)))
158#else
57d65592 159#ifdef WINDOWSNT
f405affb 160#define EMACS_KILLPG(gid, signo) (kill (gid, signo))
57d65592 161#else
9ab9afa9
JB
162#define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo)))
163#endif
57d65592 164#endif
9ab9afa9
JB
165
166/* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
167 testing SIGCHLD. */
9ab9afa9
JB
168#ifndef VMS
169#ifdef SIGCLD
170#ifndef SIGCHLD
171#define SIGCHLD SIGCLD
985a35a3
JB
172#endif /* SIGCHLD */
173#endif /* ! defined (SIGCLD) */
174#endif /* VMS */
68c45bf0
PE
175
176#ifndef HAVE_STRSIGNAL
177/* strsignal is in sysdep.c */
178char *strsignal ();
179#endif