Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/linux32/arch/amd64 Add missing includes to bring ...



details:   https://anonhg.NetBSD.org/src/rev/9c178e4e564c
branches:  trunk
changeset: 756154:9c178e4e564c
user:      jmmv <jmmv%NetBSD.org@localhost>
date:      Wed Jul 07 12:43:18 2010 +0000

description:
Add missing includes to bring the linux_semun type needed by
linux_syscallargs.h.

diffstat:

 sys/compat/linux32/arch/amd64/linux32_machdep.c |  8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diffs (36 lines):

diff -r 357c57392f0e -r 9c178e4e564c sys/compat/linux32/arch/amd64/linux32_machdep.c
--- a/sys/compat/linux32/arch/amd64/linux32_machdep.c   Wed Jul 07 11:42:18 2010 +0000
+++ b/sys/compat/linux32/arch/amd64/linux32_machdep.c   Wed Jul 07 12:43:18 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: linux32_machdep.c,v 1.24 2010/07/07 01:30:35 chs Exp $ */
+/*     $NetBSD: linux32_machdep.c,v 1.25 2010/07/07 12:43:18 jmmv Exp $ */
 
 /*-
  * Copyright (c) 2006 Emmanuel Dreyfus, all rights reserved.
@@ -31,7 +31,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux32_machdep.c,v 1.24 2010/07/07 01:30:35 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux32_machdep.c,v 1.25 2010/07/07 12:43:18 jmmv Exp $");
 
 #include <sys/param.h>
 #include <sys/proc.h>
@@ -49,6 +49,8 @@
 #include <compat/linux/common/linux_signal.h>
 #include <compat/linux/common/linux_errno.h>
 #include <compat/linux/common/linux_exec.h>
+#include <compat/linux/common/linux_ipc.h>
+#include <compat/linux/common/linux_sem.h>
 #include <compat/linux/linux_syscallargs.h>
 
 #include <compat/linux32/common/linux32_types.h>
@@ -56,6 +58,8 @@
 #include <compat/linux32/common/linux32_machdep.h>
 #include <compat/linux32/common/linux32_signal.h>
 #include <compat/linux32/common/linux32_exec.h>
+#include <compat/linux32/common/linux32_ipc.h>
+#include <compat/linux32/common/linux32_sem.h>
 #include <compat/linux32/linux32_syscallargs.h>
 
 #ifdef DEBUG_LINUX



Home | Main Index | Thread Index | Old Index