]> git.ipfire.org Git - thirdparty/bash.git/blame - sig.h
Bash-5.1 patch 4: fix key-value pair associative array assignment word expansions
[thirdparty/bash.git] / sig.h
CommitLineData
ccc6cda3
JA
1/* sig.h -- header file for signal handler definitions. */
2
ac50fbac 3/* Copyright (C) 1994-2013 Free Software Foundation, Inc.
ccc6cda3
JA
4
5 This file is part of GNU Bash, the Bourne Again SHell.
6
3185942a
JA
7 Bash is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
ccc6cda3 11
3185942a
JA
12 Bash is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
ccc6cda3 16
3185942a
JA
17 You should have received a copy of the GNU General Public License
18 along with Bash. If not, see <http://www.gnu.org/licenses/>.
19*/
ccc6cda3
JA
20
21/* Make sure that this is included *after* config.h! */
22
23#if !defined (_SIG_H_)
24# define _SIG_H_
25
26#include "stdc.h"
27
a0c0a00f 28#include <signal.h> /* for sig_atomic_t */
ac50fbac 29
ccc6cda3
JA
30#if !defined (SIGABRT) && defined (SIGIOT)
31# define SIGABRT SIGIOT
32#endif
33
34#define sighandler RETSIGTYPE
8868edaf 35typedef RETSIGTYPE SigHandler PARAMS((int));
ccc6cda3
JA
36
37#if defined (VOID_SIGHANDLER)
38# define SIGRETURN(n) return
39#else
40# define SIGRETURN(n) return(n)
41#endif /* !VOID_SIGHANDLER */
42
43/* Here is a definition for set_signal_handler () which simply expands to
44 a call to signal () for non-Posix systems. The code for set_signal_handler
45 in the Posix case resides in general.c. */
46#if !defined (HAVE_POSIX_SIGNALS)
47# define set_signal_handler(sig, handler) (SigHandler *)signal (sig, handler)
48#else
8868edaf 49extern SigHandler *set_signal_handler PARAMS((int, SigHandler *)); /* in sig.c */
ccc6cda3
JA
50#endif /* _POSIX_VERSION */
51
ccc6cda3
JA
52#if !defined (SIGCHLD) && defined (SIGCLD)
53# define SIGCHLD SIGCLD
54#endif
55
56#if !defined (HAVE_POSIX_SIGNALS) && !defined (sigmask)
57# define sigmask(x) (1 << ((x)-1))
58#endif /* !HAVE_POSIX_SIGNALS && !sigmask */
59
60#if !defined (HAVE_POSIX_SIGNALS)
61# if !defined (SIG_BLOCK)
62# define SIG_BLOCK 2
63# define SIG_SETMASK 3
64# endif /* SIG_BLOCK */
65
66/* sigset_t defined in config.h */
67
68/* Make sure there is nothing inside the signal set. */
69# define sigemptyset(set) (*(set) = 0)
70
71/* Initialize the signal set to hold all signals. */
72# define sigfillset(set) (*set) = sigmask (NSIG) - 1
73
74/* Add SIG to the contents of SET. */
75# define sigaddset(set, sig) *(set) |= sigmask (sig)
76
77/* Delete SIG from signal set SET. */
78# define sigdelset(set, sig) *(set) &= ~sigmask (sig)
79
80/* Is SIG a member of the signal set SET? */
81# define sigismember(set, sig) ((*(set) & sigmask (sig)) != 0)
82
83/* Suspend the process until the reception of one of the signals
84 not present in SET. */
85# define sigsuspend(set) sigpause (*(set))
86#endif /* !HAVE_POSIX_SIGNALS */
87
88/* These definitions are used both in POSIX and non-POSIX implementations. */
89
90#define BLOCK_SIGNAL(sig, nvar, ovar) \
7117c2d2 91do { \
ccc6cda3
JA
92 sigemptyset (&nvar); \
93 sigaddset (&nvar, sig); \
94 sigemptyset (&ovar); \
7117c2d2
JA
95 sigprocmask (SIG_BLOCK, &nvar, &ovar); \
96} while (0)
ccc6cda3 97
ac50fbac
CR
98#define UNBLOCK_SIGNAL(ovar) sigprocmask (SIG_SETMASK, &ovar, (sigset_t *) NULL)
99
ccc6cda3 100#if defined (HAVE_POSIX_SIGNALS)
ac50fbac
CR
101# define BLOCK_CHILD(nvar, ovar) BLOCK_SIGNAL (SIGCHLD, nvar, ovar)
102# define UNBLOCK_CHILD(ovar) UNBLOCK_SIGNAL(ovar)
ccc6cda3
JA
103#else /* !HAVE_POSIX_SIGNALS */
104# define BLOCK_CHILD(nvar, ovar) ovar = sigblock (sigmask (SIGCHLD))
105# define UNBLOCK_CHILD(ovar) sigsetmask (ovar)
106#endif /* !HAVE_POSIX_SIGNALS */
107
95732b49 108/* Extern variables */
ac50fbac
CR
109extern volatile sig_atomic_t sigwinch_received;
110extern volatile sig_atomic_t sigterm_received;
95732b49 111
ac50fbac 112extern int interrupt_immediately; /* no longer used */
0628567a
JA
113extern int terminate_immediately;
114
ccc6cda3 115/* Functions from sig.c. */
8868edaf
CR
116extern sighandler termsig_sighandler PARAMS((int));
117extern void termsig_handler PARAMS((int));
118extern sighandler sigint_sighandler PARAMS((int));
119extern void initialize_signals PARAMS((int));
120extern void initialize_terminating_signals PARAMS((void));
121extern void reset_terminating_signals PARAMS((void));
122extern void top_level_cleanup PARAMS((void));
123extern void throw_to_top_level PARAMS((void));
124extern void jump_to_top_level PARAMS((int)) __attribute__((__noreturn__));
125extern void restore_sigmask PARAMS((void));
126
127extern sighandler sigwinch_sighandler PARAMS((int));
128extern void set_sigwinch_handler PARAMS((void));
129extern void unset_sigwinch_handler PARAMS((void));
130
131extern sighandler sigterm_sighandler PARAMS((int));
ac50fbac 132
ccc6cda3 133/* Functions defined in trap.c. */
8868edaf
CR
134extern SigHandler *set_sigint_handler PARAMS((void));
135extern SigHandler *trap_to_sighandler PARAMS((int));
136extern sighandler trap_handler PARAMS((int));
ccc6cda3 137
8868edaf
CR
138extern int block_trapped_signals PARAMS((sigset_t *, sigset_t *));
139extern int unblock_trapped_signals PARAMS((sigset_t *));
ccc6cda3 140#endif /* _SIG_H_ */