Date: Tue, 5 Dec 2006 18:10:43 GMT From: Oleksandr Tymoshenko <gonzo@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 111151 for review Message-ID: <200612051810.kB5IAh7l038457@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=111151 Change 111151 by gonzo@gonzo_hq on 2006/12/05 18:10:12 o Remove stuff derived from amd64. Affected files ... .. //depot/projects/mips2/src/sys/mips/include/setjmp.h#2 edit Differences ... ==== //depot/projects/mips2/src/sys/mips/include/setjmp.h#2 (text+ko) ==== @@ -37,7 +37,7 @@ #include <sys/cdefs.h> -#define _JBLEN 12 /* Size of the jmp_buf on AMD64. */ +#define _JBLEN 12 /* Size of the jmp_buf on MIPS. */ /* * jmp_buf and sigjmp_buf are encapsulated in different structs to force @@ -45,9 +45,9 @@ * internally to avoid some run-time errors for mismatches. */ #if __BSD_VISIBLE || __POSIX_VISIBLE || __XSI_VISIBLE -typedef struct _sigjmp_buf { long _sjb[_JBLEN]; } sigjmp_buf[1]; +typedef struct _sigjmp_buf { __register_t _sjb[_JBLEN]; } sigjmp_buf[1]; #endif -typedef struct _jmp_buf { long _jb[_JBLEN]; } jmp_buf[1]; +typedef struct _jmp_buf { __register_t _jb[_JBLEN]; } jmp_buf[1]; #endif /* !_MACHINE_SETJMP_H_ */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200612051810.kB5IAh7l038457>