12345678910111213141516171819202122232425262728293031323334 |
- #include <setjmp.h>
- #include <stddef.h>
- #include <bits/libc-lock.h>
- #ifndef SHARED
- weak_extern (__pthread_cleanup_upto);
- #endif
- void
- _longjmp_unwind (jmp_buf env, int val)
- {
- __libc_maybe_call2 (pthread_cleanup_upto,
- (env->__jmpbuf, __builtin_frame_address (0)),
- (void) 0);
- }
|