12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #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 SIZE_OF_REG 8
- #define QUAD_REG_SIZE (4 * SIZE_OF_REG)
- #define JMPBUF_RA_CS_OFFSET 0
- #define JMPBUF_LC_LE_LS_OFFSET (2 * SIZE_OF_REG)
- #define JMPBUF_REGS_OFFSET (JMPBUF_LC_LE_LS_OFFSET + (4 * SIZE_OF_REG))
- #ifndef _ASM
- typedef struct
- {
-
- unsigned long ra;
- unsigned long cs;
-
- unsigned long lc_le_ls[4];
-
- unsigned long regs[16];
- } __jmp_buf[1] __attribute__((__aligned__ (8)));
- #endif
- #endif
|