From owner-svn-src-all@FreeBSD.ORG Thu Sep 10 13:20:27 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86204106566B; Thu, 10 Sep 2009 13:20:27 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5B0DA8FC14; Thu, 10 Sep 2009 13:20:27 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n8ADKRaK020674; Thu, 10 Sep 2009 13:20:27 GMT (envelope-from des@svn.freebsd.org) Received: (from des@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n8ADKRp0020669; Thu, 10 Sep 2009 13:20:27 GMT (envelope-from des@svn.freebsd.org) Message-Id: <200909101320.n8ADKRp0020669@svn.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 10 Sep 2009 13:20:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r197064 - in head/sys: amd64/linux32 compat/svr4 i386/ibcs2 i386/linux X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Sep 2009 13:20:27 -0000 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