12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef _BITS_SETJMP_H
- #define _BITS_SETJMP_H 1
- #if !defined _SETJMP_H && !defined _PTHREAD_H
- # error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
- #endif
- #ifndef _ASM
- typedef struct
- {
-
- void *__sp;
-
- void *__lp;
-
- int __regs[13];
- } __jmp_buf[1];
- #endif
- #define JB_SIZE (4 * 15)
- #define _JMPBUF_UNWINDS(jmpbuf, address) \
- ((void *) (address) < (void *) (jmpbuf)[0].__sp)
- #endif
|