Module Name: src
Committed By: jmmv
Date: Wed Jul 7 12:43:18 UTC 2010
Modified Files:
src/sys/compat/linux32/arch/amd64: linux32_machdep.c
Log Message:
Add missing includes to bring the linux_semun type needed by
linux_syscallargs.h.
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 \
src/sys/compat/linux32/arch/amd64/linux32_machdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/compat/linux32/arch/amd64/linux32_machdep.c
diff -u src/sys/compat/linux32/arch/amd64/linux32_machdep.c:1.24 src/sys/compat/linux32/arch/amd64/linux32_machdep.c:1.25
--- src/sys/compat/linux32/arch/amd64/linux32_machdep.c:1.24 Wed Jul 7 01:30:35 2010
+++ src/sys/compat/linux32/arch/amd64/linux32_machdep.c Wed Jul 7 12:43:18 2010
@@ -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