123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #ifndef _SETJMP_H
- # error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
- #endif
- typedef struct
- {
-
- void * __pc;
-
- void * __sp;
-
- int __regs[8];
-
- void * __fp;
-
- void * __gp;
-
- int __fpc_csr;
-
- double __fpregs[6];
- } __jmp_buf[1];
- #ifdef __USE_MISC
- # define JB_PC 0
- #endif
- #define _JMPBUF_UNWINDS(jmpbuf, address) \
- ((void *) (address) < (jmpbuf)[0].__sp)
|