1 /* $OpenBSD: setjmp.h,v 1.4 2018/01/08 16:44:32 visa Exp $ */ 2 3 /* Public domain */ 4 5 #ifndef _MIPS64_SETJMP_H_ 6 #define _MIPS64_SETJMP_H_ 7 8 #define _JB_MASK (1 * REGSZ) 9 #define _JB_PC (2 * REGSZ) 10 #define _JB_REGS (3 * REGSZ) 11 #define _JB_FPREGS (37 * REGSZ) 12 13 #define _JBLEN 83 /* size, in longs, of a jmp_buf */ 14 15 #endif /* !_MIPS64_SETJMP_H_ */ 16