svn commit: r197064 - in head/sys: amd64/linux32 compat/svr4 i386/ibcs2 i386/linux

Dag-Erling Smorgrav des at FreeBSD.org
Thu Sep 10 13:20:27 UTC 2009


Author: des
Date: Thu Sep 10 13:20:27 2009
New Revision: 197064
URL: http://svn.freebsd.org/changeset/base/197064

Log:
  As jhb@ pointed out to me, r197057 was incorrect, not least because these
  are generated files.

Modified:
  head/sys/amd64/linux32/linux32_proto.h
  head/sys/compat/svr4/svr4_proto.h
  head/sys/i386/ibcs2/ibcs2_proto.h
  head/sys/i386/linux/linux_proto.h

Modified: head/sys/amd64/linux32/linux32_proto.h
==============================================================================
--- head/sys/amd64/linux32/linux32_proto.h	Thu Sep 10 13:01:23 2009	(r197063)
+++ head/sys/amd64/linux32/linux32_proto.h	Thu Sep 10 13:20:27 2009	(r197064)
@@ -1257,6 +1257,13 @@ int	linux_vmsplice(struct thread *, stru
 
 #endif /* COMPAT_FREEBSD6 */
 
+
+#ifdef COMPAT_FREEBSD7
+
+#define	nosys	linux_nosys
+
+#endif /* COMPAT_FREEBSD7 */
+
 #define	LINUX_SYS_AUE_linux_fork	AUE_FORK
 #define	LINUX_SYS_AUE_linux_open	AUE_OPEN_RWTC
 #define	LINUX_SYS_AUE_linux_waitpid	AUE_WAIT4

Modified: head/sys/compat/svr4/svr4_proto.h
==============================================================================
--- head/sys/compat/svr4/svr4_proto.h	Thu Sep 10 13:01:23 2009	(r197063)
+++ head/sys/compat/svr4/svr4_proto.h	Thu Sep 10 13:20:27 2009	(r197064)
@@ -503,6 +503,12 @@ int	svr4_sys_sendto(struct thread *, str
 
 #endif /* COMPAT_FREEBSD6 */
 
+
+#ifdef COMPAT_FREEBSD7
+
+
+#endif /* COMPAT_FREEBSD7 */
+
 #define	SVR4_SYS_AUE_svr4_sys_open	AUE_NULL
 #define	SVR4_SYS_AUE_svr4_sys_wait	AUE_NULL
 #define	SVR4_SYS_AUE_svr4_sys_creat	AUE_NULL

Modified: head/sys/i386/ibcs2/ibcs2_proto.h
==============================================================================
--- head/sys/i386/ibcs2/ibcs2_proto.h	Thu Sep 10 13:01:23 2009	(r197063)
+++ head/sys/i386/ibcs2/ibcs2_proto.h	Thu Sep 10 13:20:27 2009	(r197064)
@@ -345,6 +345,12 @@ int	ibcs2_isc(struct thread *, struct ib
 
 #endif /* COMPAT_FREEBSD6 */
 
+
+#ifdef COMPAT_FREEBSD7
+
+
+#endif /* COMPAT_FREEBSD7 */
+
 #define	IBCS2_SYS_AUE_ibcs2_read	AUE_NULL
 #define	IBCS2_SYS_AUE_ibcs2_open	AUE_OPEN_RWTC
 #define	IBCS2_SYS_AUE_ibcs2_wait	AUE_WAIT4

Modified: head/sys/i386/linux/linux_proto.h
==============================================================================
--- head/sys/i386/linux/linux_proto.h	Thu Sep 10 13:01:23 2009	(r197063)
+++ head/sys/i386/linux/linux_proto.h	Thu Sep 10 13:20:27 2009	(r197064)
@@ -1277,6 +1277,13 @@ int	linux_vmsplice(struct thread *, stru
 
 #endif /* COMPAT_FREEBSD6 */
 
+
+#ifdef COMPAT_FREEBSD7
+
+#define	nosys	linux_nosys
+
+#endif /* COMPAT_FREEBSD7 */
+
 #define	LINUX_SYS_AUE_linux_fork	AUE_FORK
 #define	LINUX_SYS_AUE_linux_open	AUE_OPEN_RWTC
 #define	LINUX_SYS_AUE_linux_waitpid	AUE_WAIT4


More information about the svn-src-all mailing list