setjmp.h revision 1.8
11.8Smatt/*	$NetBSD: setjmp.h,v 1.8 2009/08/12 05:12:58 matt Exp $	*/
21.1Scgd
31.1Scgd/*
41.3Scastor * mips/setjmp.h: machine dependent setjmp-related information.
51.3Scastor *
61.6Ssimonb * For the size of this, refer to <machine/signal.h> as this uses the
71.3Scastor * struct sigcontext to restore it.
81.1Scgd */
91.7Ssimonb
101.8Smatt#if defined(__mips_n32) || (defined(_MIPS_SIM) && _MIPS_SIM == _ABIN32)
111.8Smatt/*
121.8Smatt * With the N32 ABI, registers have 64 bits
131.8Smatt */
141.8Smatt#define	_BSD_JBSLOT_T_		long long
151.8Smatt#endif
161.1Scgd
171.8Smatt#define _JBLEN	87		/* XXX Naively 84; 87 for compatibility */
18