]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/s390/jmp-unwind.c
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / s390 / jmp-unwind.c
CommitLineData
a88c9263 1/* Clean up stack frames unwound by longjmp. Linux/s390 version.
581c785b 2 Copyright (C) 2003-2022 Free Software Foundation, Inc.
a88c9263
UD
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
d347a4ab 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
a88c9263
UD
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
59ba27a6 16 License along with the GNU C Library; if not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
a88c9263
UD
18
19#include <setjmp.h>
20#include <stddef.h>
94afa0a5 21#include <libc-lock.h>
3c79234c 22#include <pthreadP.h>
a88c9263
UD
23
24void
25_longjmp_unwind (jmp_buf env, int val)
26{
56e7d3ad 27 char local_var;
ea1533e0 28
4647ce82 29 __pthread_cleanup_upto (env->__jmpbuf, &local_var);
a88c9263 30}