]> git.ipfire.org Git - thirdparty/glibc.git/blame - setjmp/setjmp.h
build-many-glibcs: Check for required system tools
[thirdparty/glibc.git] / setjmp / setjmp.h
CommitLineData
6d7e8eda 1/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
ba1ffaa1 2 This file is part of the GNU C Library.
28f540f4 3
ba1ffaa1 4 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
28f540f4 8
ba1ffaa1
UD
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12 Lesser General Public License for more details.
28f540f4 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6 15 License along with the GNU C Library; if not, see
5a82c748 16 <https://www.gnu.org/licenses/>. */
28f540f4
RM
17
18/*
d1646309 19 * ISO C99 Standard: 7.13 Nonlocal jumps <setjmp.h>
28f540f4
RM
20 */
21
22#ifndef _SETJMP_H
28f540f4 23#define _SETJMP_H 1
5107cf1d 24
28f540f4
RM
25#include <features.h>
26
27__BEGIN_DECLS
28
5107cf1d 29#include <bits/setjmp.h> /* Get `__jmp_buf'. */
19302b27 30#include <bits/types/struct___jmp_buf_tag.h>
2e0e802a 31
2e0e802a 32typedef struct __jmp_buf_tag jmp_buf[1];
28f540f4 33
eca90c85
UD
34/* Store the calling environment in ENV, also saving the signal mask.
35 Return 0. */
edc5984d 36extern int setjmp (jmp_buf __env) __THROWNL;
eca90c85 37
28f540f4
RM
38/* Store the calling environment in ENV, also saving the
39 signal mask if SAVEMASK is nonzero. Return 0.
40 This is the internal name for `sigsetjmp'. */
edc5984d 41extern int __sigsetjmp (struct __jmp_buf_tag __env[1], int __savemask) __THROWNL;
28f540f4 42
7a5affeb
UD
43/* Store the calling environment in ENV, not saving the signal mask.
44 Return 0. */
edc5984d 45extern int _setjmp (struct __jmp_buf_tag __env[1]) __THROWNL;
7a5affeb 46
eca90c85
UD
47/* Do not save the signal mask. This is equivalent to the `_setjmp'
48 BSD function. */
7011c262 49#define setjmp(env) _setjmp (env)
28f540f4 50
28f540f4
RM
51
52/* Jump to the environment saved in ENV, making the
53 `setjmp' call there return VAL, or 1 if VAL is 0. */
7a5affeb 54extern void longjmp (struct __jmp_buf_tag __env[1], int __val)
edc5984d 55 __THROWNL __attribute__ ((__noreturn__));
7a5affeb 56
498afc54 57#if defined __USE_MISC || defined __USE_XOPEN
28f540f4
RM
58/* Same. Usually `_longjmp' is used with `_setjmp', which does not save
59 the signal mask. But it is how ENV was saved that determines whether
60 `longjmp' restores the mask; `_longjmp' is just an alias. */
7a5affeb 61extern void _longjmp (struct __jmp_buf_tag __env[1], int __val)
edc5984d 62 __THROWNL __attribute__ ((__noreturn__));
f21acc89 63#endif
28f540f4 64
28f540f4
RM
65
66#ifdef __USE_POSIX
67/* Use the same type for `jmp_buf' and `sigjmp_buf'.
68 The `__mask_was_saved' flag determines whether
69 or not `longjmp' will restore the signal mask. */
7a5affeb 70typedef struct __jmp_buf_tag sigjmp_buf[1];
28f540f4
RM
71
72/* Store the calling environment in ENV, also saving the
73 signal mask if SAVEMASK is nonzero. Return 0. */
eca90c85 74# define sigsetjmp(env, savemask) __sigsetjmp (env, savemask)
28f540f4
RM
75
76/* Jump to the environment saved in ENV, making the
77 sigsetjmp call there return VAL, or 1 if VAL is 0.
78 Restore the signal mask if that sigsetjmp call saved it.
79 This is just an alias `longjmp'. */
c1422e5b 80extern void siglongjmp (sigjmp_buf __env, int __val)
edc5984d 81 __THROWNL __attribute__ ((__noreturn__));
28f540f4
RM
82#endif /* Use POSIX. */
83
b50f8e42
UD
84
85/* Define helper functions to catch unsafe code. */
86#if __USE_FORTIFY_LEVEL > 0
87# include <bits/setjmp2.h>
88#endif
89
28f540f4
RM
90__END_DECLS
91
92#endif /* setjmp.h */