]> git.ipfire.org Git - thirdparty/bash.git/blame - quit.h
bash-4.3-rc1 overlay
[thirdparty/bash.git] / quit.h
CommitLineData
726f6388
JA
1/* quit.h -- How to handle SIGINT gracefully. */
2
73a146be 3/* Copyright (C) 1993-2013 Free Software Foundation, Inc.
726f6388
JA
4
5 This file is part of GNU Bash, the Bourne Again SHell.
6
2e4498b3
CR
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.
726f6388 11
2e4498b3
CR
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.
726f6388 16
2e4498b3
CR
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*/
726f6388 20
ccc6cda3
JA
21#if !defined (_QUIT_H_)
22#define _QUIT_H_
726f6388 23
c7e43312
CR
24#include "sig.h" /* for sig_atomic_t */
25
8581f42d 26/* Non-zero means SIGINT has already occurred. */
c7e43312
CR
27extern volatile sig_atomic_t interrupt_state;
28extern volatile sig_atomic_t terminating_signal;
ac18b312
CR
29
30/* Macro to call a great deal. SIGINT just sets the interrupt_state variable.
31 When it is safe, put QUIT in the code, and the "interrupt" will take
32 place. The same scheme is used for terminating signals (e.g., SIGHUP)
33 and the terminating_signal variable. That calls a function which will
34 end up exiting the shell. */
35#define QUIT \
36 do { \
37 if (terminating_signal) termsig_handler (terminating_signal); \
38 if (interrupt_state) throw_to_top_level (); \
39 } while (0)
726f6388 40
10e78433
CR
41#define CHECK_ALRM \
42 do { \
43 if (sigalrm_seen) \
44 longjmp (alrmbuf, 1); \
45 } while (0)
46
ccc6cda3
JA
47#define SETINTERRUPT interrupt_state = 1
48#define CLRINTERRUPT interrupt_state = 0
49
50#define ADDINTERRUPT interrupt_state++
51#define DELINTERRUPT interrupt_state--
52
ac18b312
CR
53/* The same sort of thing, this time just for signals that would ordinarily
54 cause the shell to terminate. */
55
56#define CHECK_TERMSIG \
57 do { \
58 if (terminating_signal) termsig_handler (terminating_signal); \
59 } while (0)
60
5a318736
CR
61#define LASTSIG() \
62 (terminating_signal ? terminating_signal : (interrupt_state ? SIGINT : 0))
63
dfc91666
CR
64#define CHECK_WAIT_INTR \
65 do { \
66 if (wait_signal_received && this_shell_builtin && (this_shell_builtin == wait_builtin)) \
dfc91666 67 longjmp (wait_intr_buf, 1); \
dfc91666
CR
68 } while (0)
69
73a146be
CR
70#define RESET_SIGTERM \
71 do { \
72 sigterm_received = 0; \
73 } while (0)
74
75#define CHECK_SIGTERM \
76 do { \
77 if (sigterm_received) termsig_handler (SIGTERM); \
78 } while (0)
ccc6cda3 79#endif /* _QUIT_H_ */