1234567891011121314151617181920212223242526272829303132333435363738 |
- #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
- #define ___SAVEREGS 8
- typedef struct __jmp_buf__ {
- long _q0;
- long _q1;
- long _q2;
- long _q3;
- } __attribute__ ((aligned (16))) __jmp_buf[___SAVEREGS] ;
- #if 0
- #define _JMPBUF_UNWINDS(jmpbuf, address) \
- ((void *) (address) < (void *) (jmpbuf)[0].__sp)
- #endif
- #endif
|