svn commit: r249180 - head/sys/arm/include

Andrew Turner andrew at FreeBSD.org
Sat Apr 6 00:47:34 UTC 2013


Author: andrew
Date: Sat Apr  6 00:47:33 2013
New Revision: 249180
URL: http://svnweb.freebsd.org/changeset/base/249180

Log:
  Hide non-assembler bits behind #ifndef __ASSEMBLER__

Modified:
  head/sys/arm/include/setjmp.h

Modified: head/sys/arm/include/setjmp.h
==============================================================================
--- head/sys/arm/include/setjmp.h	Fri Apr  5 23:42:22 2013	(r249179)
+++ head/sys/arm/include/setjmp.h	Sat Apr  6 00:47:33 2013	(r249180)
@@ -87,10 +87,13 @@
 /* Only valid with the _JB_MAGIC_SETJMP magic */
 
 #define _JB_SIGMASK		25
+
+#ifndef __ASSEMBLER__
 #if __BSD_VISIBLE || __POSIX_VISIBLE || __XSI_VISIBLE
 typedef struct _sigjmp_buf { int _sjb[_JBLEN + 1]; } sigjmp_buf[1];
 #endif
 
 typedef struct _jmp_buf { int _jb[_JBLEN + 1]; } jmp_buf[1];
+#endif
 
 #endif /* !_MACHINE_SETJMP_H_ */


More information about the svn-src-head mailing list