Current Path : /usr/src/sys/powerpc/include/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/sys/powerpc/include/setjmp.h |
/*- * $NetBSD: setjmp.h,v 1.3 1998/09/16 23:51:27 thorpej Exp $ * $FreeBSD: release/9.1.0/sys/powerpc/include/setjmp.h 104505 2002-10-05 05:47:56Z mike $ */ #ifndef _MACHINE_SETJMP_H_ #define _MACHINE_SETJMP_H_ #include <sys/cdefs.h> #define _JBLEN 100 /* * jmp_buf and sigjmp_buf are encapsulated in different structs to force * compile-time diagnostics for mismatches. The structs are the same * internally to avoid some run-time errors for mismatches. */ #if __BSD_VISIBLE || __POSIX_VISIBLE || __XSI_VISIBLE typedef struct _sigjmp_buf { long _sjb[_JBLEN + 1]; } sigjmp_buf[1]; #endif typedef struct _jmp_buf { long _jb[_JBLEN + 1]; } jmp_buf[1]; #endif /* !_MACHINE_SETJMP_H_ */