1 /* $OpenBSD: setjmp.h,v 1.2 2004/08/10 21:10:56 pefo Exp $ */ 2 3 /* Public domain */ 4 5 #ifndef _MIPS_SETJMP_H_ 6 #define _MIPS_SETJMP_H_ 7 8 #ifdef __LP64__ 9 #define _JBLEN 25 /* size, in 8-byte longs, of a mips64 jmp_buf/sigjmp_buf */ 10 #else 11 #define _JBLEN 157 /* historical size, in 4-byte longs, of a mips32 jmp_buf */ 12 /* actual used size is 34 */ 13 #endif 14 15 #endif /* !_MIPS_SETJMP_H_ */ 16