xref: /netbsd/sys/arch/mips/include/setjmp.h (revision bf9ec67e)
1 /*	$NetBSD: setjmp.h,v 1.7 2002/03/05 14:17:16 simonb Exp $	*/
2 
3 /*
4  * mips/setjmp.h: machine dependent setjmp-related information.
5  *
6  * For the size of this, refer to <machine/signal.h> as this uses the
7  * struct sigcontext to restore it.
8  */
9 
10 #include <machine/cdefs.h>	/* for API selection */
11 
12 #if !defined(_MIPS_BSD_API) || _MIPS_BSD_API == _MIPS_BSD_API_LP32
13 #define _JBLEN 87		/* XXX Naively 84; 87 for compatibility */
14 #else
15 #define _JBLEN	120
16 #endif
17