2002-03-05 17:17:16 +03:00
|
|
|
/* $NetBSD: setjmp.h,v 1.7 2002/03/05 14:17:16 simonb Exp $ */
|
1994-12-20 13:36:27 +03:00
|
|
|
|
|
|
|
/*
|
1999-01-14 21:45:45 +03:00
|
|
|
* mips/setjmp.h: machine dependent setjmp-related information.
|
|
|
|
*
|
1999-04-24 12:01:01 +04:00
|
|
|
* For the size of this, refer to <machine/signal.h> as this uses the
|
1999-01-14 21:45:45 +03:00
|
|
|
* struct sigcontext to restore it.
|
1994-12-20 13:36:27 +03:00
|
|
|
*/
|
|
|
|
|
2002-03-05 17:17:16 +03:00
|
|
|
#include <machine/cdefs.h> /* for API selection */
|
|
|
|
|
1999-01-31 03:55:41 +03:00
|
|
|
#if !defined(_MIPS_BSD_API) || _MIPS_BSD_API == _MIPS_BSD_API_LP32
|
|
|
|
#define _JBLEN 87 /* XXX Naively 84; 87 for compatibility */
|
|
|
|
#else
|
|
|
|
#define _JBLEN 120
|
1999-01-14 21:45:45 +03:00
|
|
|
#endif
|