2003-02-05 09:54:24 +00:00
|
|
|
/* Clean up stack frames unwound by longjmp. Linux/s390 version.
|
2014-01-01 11:03:15 +00:00
|
|
|
Copyright (C) 2003-2014 Free Software Foundation, Inc.
|
2003-02-05 09:54:24 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2003-07-31 19:26:38 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2003-02-05 09:54:24 +00:00
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2003-02-05 09:54:24 +00:00
|
|
|
|
|
|
|
#include <setjmp.h>
|
|
|
|
#include <stddef.h>
|
2004-10-06 18:09:57 +00:00
|
|
|
#include <pthreadP.h>
|
2003-02-05 09:54:24 +00:00
|
|
|
|
2003-07-31 19:26:38 +00:00
|
|
|
extern void __pthread_cleanup_upto (__jmp_buf env, char *targetframe);
|
2003-02-05 09:54:24 +00:00
|
|
|
#pragma weak __pthread_cleanup_upto
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
_longjmp_unwind (jmp_buf env, int val)
|
|
|
|
{
|
2012-12-08 07:33:24 +00:00
|
|
|
char local_var;
|
2007-01-17 08:37:26 +00:00
|
|
|
|
2003-02-05 09:54:24 +00:00
|
|
|
#ifdef SHARED
|
2007-01-17 08:37:26 +00:00
|
|
|
if (__libc_pthread_functions_init)
|
|
|
|
PTHFCT_CALL (ptr___pthread_cleanup_upto, (env->__jmpbuf, &local_var));
|
2003-02-05 09:54:24 +00:00
|
|
|
#else
|
2007-01-17 08:37:26 +00:00
|
|
|
if (__pthread_cleanup_upto != NULL)
|
|
|
|
__pthread_cleanup_upto (env->__jmpbuf, &local_var);
|
2003-02-05 09:54:24 +00:00
|
|
|
#endif
|
|
|
|
}
|