svn commit: r215859 - stable/8/sys/compat/ia32

Konstantin Belousov kib at FreeBSD.org
Fri Nov 26 11:11:49 UTC 2010


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 <vm/vm.h>
 #include <vm/vm_param.h>
 #include <vm/pmap.h>
@@ -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


More information about the svn-src-all mailing list