]> git.ipfire.org Git - thirdparty/bash.git/blame - sig.h
fix for SIGINT in sourced script
[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
7117c2d2 35typedef RETSIGTYPE SigHandler __P((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
7117c2d2 49extern SigHandler *set_signal_handler __P((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. */
0628567a
JA
116extern sighandler termsig_sighandler __P((int));
117extern void termsig_handler __P((int));
ccc6cda3 118extern sighandler sigint_sighandler __P((int));
7117c2d2 119extern void initialize_signals __P((int));
d166f048 120extern void initialize_terminating_signals __P((void));
ccc6cda3 121extern void reset_terminating_signals __P((void));
f1be666c 122extern void top_level_cleanup __P((void));
ccc6cda3 123extern void throw_to_top_level __P((void));
f73dda09 124extern void jump_to_top_level __P((int)) __attribute__((__noreturn__));
ccc6cda3 125
95732b49
JA
126extern sighandler sigwinch_sighandler __P((int));
127extern void set_sigwinch_handler __P((void));
128extern void unset_sigwinch_handler __P((void));
129
ac50fbac
CR
130extern sighandler sigterm_sighandler __P((int));
131
ccc6cda3
JA
132/* Functions defined in trap.c. */
133extern SigHandler *set_sigint_handler __P((void));
e8ce775d
JA
134extern SigHandler *trap_to_sighandler __P((int));
135extern sighandler trap_handler __P((int));
ccc6cda3
JA
136
137#endif /* _SIG_H_ */