Make the jmp_buf bigger under ELF so it can store a full context.

This commit is contained in:
matt 2001-05-01 04:47:37 +00:00
parent 59bde215a7
commit 1e70afa5e6
1 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,12 @@
/* $NetBSD: setjmp.h,v 1.2 1998/10/01 19:00:06 christos Exp $ */
/* $NetBSD: setjmp.h,v 1.3 2001/05/01 04:47:37 matt Exp $ */
/*
* machine/setjmp.h: machine dependent setjmp-related information.
*/
#ifdef __ELF__
#define _JBLEN 24 /* size, in longs, of a jmp_buf */
/* R0..R11,AP,FP,SP,PC PSL,SSP,ESP + 5 extra */
#else
#define _JBLEN 14 /* size, in longs, of a jmp_buf */
#endif