summaryrefslogtreecommitdiff
path: root/sys/compat/linux32/linux32_syscalls.c
diff options
context:
space:
mode:
authormanu <manu@NetBSD.org>2006-02-09 19:18:56 +0000
committermanu <manu@NetBSD.org>2006-02-09 19:18:56 +0000
commitee0c5b44def8a80be34fd2e5867cafdcc76275b6 (patch)
tree183be75b62d5300967eea39ead22b2c61ee63277 /sys/compat/linux32/linux32_syscalls.c
parent0cf592aa8aff28200eebc1da22b795caa7423277 (diff)
Add initial (but unfinished) COMPAT_LINUX32 for amd64. This is good enough so
that the i386 license manager part of amd64 version of Fluent works. While I'm here, add SysV IPC to COMPAT_LINUX/amd64
Diffstat (limited to 'sys/compat/linux32/linux32_syscalls.c')
-rw-r--r--sys/compat/linux32/linux32_syscalls.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/compat/linux32/linux32_syscalls.c b/sys/compat/linux32/linux32_syscalls.c
new file mode 100644
index 00000000000..9459bcf8cbc
--- /dev/null
+++ b/sys/compat/linux32/linux32_syscalls.c
@@ -0,0 +1,10 @@
+/* $NetBSD: linux32_syscalls.c,v 1.1 2006/02/09 19:18:57 manu Exp $ */
+
+#include <sys/cdefs.h>
+__KERNEL_RCSID(1, "$NetBSD: linux32_syscalls.c,v 1.1 2006/02/09 19:18:57 manu Exp $");
+
+#if defined(__amd64__)
+#include "../../sys/compat/linux32/arch/amd64/linux32_syscalls.c"
+#else
+const char * const linux32_syscallnames[] = { 0 };
+#endif