1 1.1 fvdl /* $NetBSD: setjmp.h,v 1.1 2003/04/26 18:39:47 fvdl Exp $ */ 2 1.1 fvdl 3 1.1 fvdl /* 4 1.1 fvdl * machine/setjmp.h: machine dependent setjmp-related information. 5 1.1 fvdl * These are only the callee-saved registers, code calling setjmp 6 1.1 fvdl * will expect the rest to be clobbered anyway. 7 1.1 fvdl */ 8 1.1 fvdl 9 1.1 fvdl #define _JB_RBX 0 10 1.1 fvdl #define _JB_RBP 1 11 1.1 fvdl #define _JB_R12 2 12 1.1 fvdl #define _JB_R13 3 13 1.1 fvdl #define _JB_R14 4 14 1.1 fvdl #define _JB_R15 5 15 1.1 fvdl #define _JB_RSP 6 16 1.1 fvdl #define _JB_PC 7 17 1.1 fvdl #define _JB_SIGFLAG 8 18 1.1 fvdl #define _JB_SIGMASK 9 19 1.1 fvdl 20 1.1 fvdl #define _JBLEN 11 /* size, in longs, of a jmp_buf */ 21