PERFORCE change 111151 for review

Oleksandr Tymoshenko gonzo at FreeBSD.org
Tue Dec 5 10:10:44 PST 2006


http://perforce.freebsd.org/chv.cgi?CH=111151

Change 111151 by gonzo at 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_ */


More information about the p4-projects mailing list