123456789101112131415161718192021222324252627282930313233343536373839 |
- #include <setjmp.h>
- #include "pthread.h"
- #include "internals.h"
- extern void __libc_siglongjmp (sigjmp_buf env, int val)
- __attribute__ ((noreturn));
- extern void __libc_longjmp (sigjmp_buf env, int val)
- __attribute__ ((noreturn));
- #ifdef SHARED
- void siglongjmp (sigjmp_buf env, int val)
- {
- __libc_siglongjmp (env, val);
- }
- void longjmp (jmp_buf env, int val)
- {
- __libc_longjmp (env, val);
- }
- #endif
|