From owner-svn-src-stable-8@FreeBSD.ORG Fri Nov 26 11:11:49 2010 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FCBF106564A; Fri, 26 Nov 2010 11:11:49 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0D8E08FC18; Fri, 26 Nov 2010 11:11:49 +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 oAQBBmki037385; Fri, 26 Nov 2010 11:11:48 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id oAQBBmJS037382; Fri, 26 Nov 2010 11:11:48 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201011261111.oAQBBmJS037382@svn.freebsd.org> From: Konstantin Belousov Date: Fri, 26 Nov 2010 11:11:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r215859 - stable/8/sys/compat/ia32 X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Nov 2010 11:11:49 -0000 Author: kib Date: Fri Nov 26 11:11:48 2010 New Revision: 215859 URL: http://svn.freebsd.org/changeset/base/215859 Log: MFC r215741: Add include guards. Modified: stable/8/sys/compat/ia32/ia32_signal.h stable/8/sys/compat/ia32/ia32_util.h Directory Properties: stable/8/sys/ (props changed) stable/8/sys/amd64/include/xen/ (props changed) stable/8/sys/cddl/contrib/opensolaris/ (props changed) stable/8/sys/contrib/dev/acpica/ (props changed) stable/8/sys/contrib/pf/ (props changed) Modified: stable/8/sys/compat/ia32/ia32_signal.h ============================================================================== --- stable/8/sys/compat/ia32/ia32_signal.h Fri Nov 26 11:05:29 2010 (r215858) +++ stable/8/sys/compat/ia32/ia32_signal.h Fri Nov 26 11:11:48 2010 (r215859) @@ -29,6 +29,9 @@ * $FreeBSD$ */ +#ifndef _COMPAT_IA32_IA32_SIGNAL_H +#define _COMPAT_IA32_IA32_SIGNAL_H + struct ia32_mcontext { u_int32_t mc_onstack; /* XXX - sigcontext compat. */ u_int32_t mc_gs; /* machine state (struct trapframe) */ @@ -187,3 +190,5 @@ extern int sz_freebsd4_ia32_sigcode; extern void ia32_sendsig(sig_t, struct ksiginfo *, sigset_t *); extern void ia32_setregs(struct thread *td, u_long entry, u_long stack, u_long ps_strings); + +#endif Modified: stable/8/sys/compat/ia32/ia32_util.h ============================================================================== --- stable/8/sys/compat/ia32/ia32_util.h Fri Nov 26 11:05:29 2010 (r215858) +++ stable/8/sys/compat/ia32/ia32_util.h Fri Nov 26 11:11:48 2010 (r215859) @@ -28,6 +28,9 @@ * $FreeBSD$ */ +#ifndef _COMPAT_IA32_IA32_UTIL_H +#define _COMPAT_IA32_IA32_UTIL_H + #include #include #include @@ -51,3 +54,5 @@ struct syscall_args; int ia32_fetch_syscall_args(struct thread *td, struct syscall_args *sa); void ia32_set_syscall_retval(struct thread *, int); + +#endif