]> git.ipfire.org Git - thirdparty/bash.git/blame - trap.h
Imported from ../bash-2.0.tar.gz.
[thirdparty/bash.git] / trap.h
CommitLineData
726f6388
JA
1/* trap.h -- data structures used in the trap mechanism. */
2
3/* Copyright (C) 1993 Free Software Foundation, Inc.
4
5 This file is part of GNU Bash, the Bourne Again SHell.
6
7 Bash is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Bash is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License along
18 with Bash; see the file COPYING. If not, write to the Free Software
19 Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20
ccc6cda3
JA
21#if !defined (_TRAP_H_)
22#define _TRAP_H_
726f6388
JA
23
24#include "stdc.h"
25
26#if !defined (SIG_DFL)
27#include <sys/types.h>
28#include <signal.h>
29#endif /* SIG_DFL */
30
31#if !defined (NSIG)
32#define NSIG 64
33#endif /* !NSIG */
34
35#define NO_SIG -1
36#define DEFAULT_SIG SIG_DFL
37#define IGNORE_SIG SIG_IGN
38
ccc6cda3
JA
39/* Special shell trap names. */
40#define DEBUG_TRAP NSIG
41#define EXIT_TRAP 0
42
726f6388
JA
43#define signal_object_p(x) (decode_signal (x) != NO_SIG)
44
ccc6cda3 45extern char *trap_list[];
726f6388
JA
46
47/* Externally-visible functions declared in trap.c. */
48extern void initialize_traps __P((void));
49extern void run_pending_traps __P((void));
50extern void maybe_set_sigchld_trap __P((char *));
51extern void set_sigchld_trap __P((char *));
ccc6cda3
JA
52extern void set_debug_trap __P((char *));
53extern void set_sigint_trap __P((char *));
726f6388
JA
54extern void set_signal __P((int, char *));
55extern void restore_default_signal __P((int));
56extern void ignore_signal __P((int));
57extern int run_exit_trap __P((void));
ccc6cda3
JA
58extern void run_trap_cleanup __P((int));
59extern void run_debug_trap __P((void));
726f6388
JA
60extern void free_trap_strings __P((void));
61extern void reset_signal_handlers __P((void));
62extern void restore_original_signals __P((void));
63
64extern char *signal_name __P((int));
65
66extern int decode_signal __P((char *));
67extern void run_interrupt_trap __P((void));
68extern int maybe_call_trap_handler __P((int));
69extern int signal_is_trapped __P((int));
726f6388 70extern int signal_is_ignored __P((int));
ccc6cda3
JA
71extern int signal_is_special __P((int));
72extern void set_signal_ignored __P((int));
726f6388 73
ccc6cda3 74#endif /* _TRAP_H_ */