NetBSD/sys/arch/vax/include/setjmp.h

14 lines
360 B
C
Raw Normal View History

/* $NetBSD: setjmp.h,v 1.4 2002/03/27 18:37:17 matt Exp $ */
/*
* machine/setjmp.h: machine dependent setjmp-related information.
*/
#ifdef __ELF__
#define _JBLEN 24 /* size, in longs, of a jmp_buf */
/* 11 for sigcontext, 6 for r6-r11, and 7 extra */
#else
1998-10-01 23:00:06 +04:00
#define _JBLEN 14 /* size, in longs, of a jmp_buf */
/* 11 for sigcontext and 3 extra */
#endif