a321f0eea8520c5f2095b4c840ad140e05202060
[platform/upstream/bash.git] / unwind_prot.h
1 /* unwind_prot.h - Macros and functions for hacking unwind protection. */
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, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
20
21 #if !defined (_UNWIND_PROT_H)
22 #define _UNWIND_PROT_H
23
24 /* Run a function without interrupts. */
25 extern void begin_unwind_frame ();
26 extern void discard_unwind_frame ();
27 extern void run_unwind_frame ();
28 extern void add_unwind_protect ();
29 extern void remove_unwind_protect ();
30 extern void run_unwind_protects ();
31 extern void unwind_protect_var ();
32
33 /* Try to force correct alignment on machines where pointers and ints
34    differ in size. */
35 typedef union {
36   char *s;
37   int i;
38 } UWP;
39
40 /* Define for people who like their code to look a certain way. */
41 #define end_unwind_frame()
42
43 /* How to protect an integer. */
44 #define unwind_protect_int(X) \
45         do \
46           { \
47             UWP u; \
48             u.i = (X); \
49             unwind_protect_var (&(X), u.s, sizeof (int)); \
50           } \
51         while (0)
52
53 #define unwind_protect_short(X) \
54   unwind_protect_var ((int *)&(X), (char *)&(X), sizeof (short))
55
56 /* How to protect a pointer to a string. */
57 #define unwind_protect_string(X) \
58   unwind_protect_var ((int *)&(X), (X), sizeof (char *))
59
60 /* How to protect any old pointer. */
61 #define unwind_protect_pointer(X) unwind_protect_string (X)
62
63 /* How to protect the contents of a jmp_buf. */
64 #define unwind_protect_jmp_buf(X) \
65   unwind_protect_var ((int *)(X), (char *)(X), sizeof (procenv_t))
66
67 #endif /* _UNWIND_PROT_H */