This commit is contained in:
christos 2003-06-23 21:26:30 +00:00
parent 35637451db
commit c9a5d7edc1
20 changed files with 84 additions and 68 deletions

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscall.h,v 1.13 2003/01/18 23:34:34 thorpej Exp $ */
/* $NetBSD: linux_syscall.h,v 1.14 2003/06/23 21:26:30 christos Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.12 2003/01/18 08:02:47 thorpej Exp
* created from NetBSD: syscalls.master,v 1.13 2003/06/23 21:25:56 christos Exp
*/
/* syscall: "nosys" ret: "int" args: */
@ -469,6 +469,9 @@
/* syscall: "ugetrlimit" ret: "int" args: "int" "struct rlimit *" */
#define LINUX_SYS_ugetrlimit 191
/* syscall: "mmap2" ret: "linux_off_t" args: "unsigned long" "size_t" "int" "int" "int" "linux_off_t" */
#define LINUX_SYS_mmap2 192
/* syscall: "truncate64" ret: "int" args: "const char *" "off_t" */
#define LINUX_SYS_truncate64 193

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscallargs.h,v 1.13 2003/01/18 23:34:34 thorpej Exp $ */
/* $NetBSD: linux_syscallargs.h,v 1.14 2003/06/23 21:26:31 christos Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.12 2003/01/18 08:02:47 thorpej Exp
* created from NetBSD: syscalls.master,v 1.13 2003/06/23 21:25:56 christos Exp
*/
#ifndef _LINUX_SYS__SYSCALLARGS_H_
@ -716,6 +716,7 @@ int sys___getcwd(struct lwp *, void *, register_t *);
int linux_sys_sigaltstack(struct lwp *, void *, register_t *);
int sys___vfork14(struct lwp *, void *, register_t *);
int linux_sys_ugetrlimit(struct lwp *, void *, register_t *);
int linux_sys_mmap2(struct lwp *, void *, register_t *);
int linux_sys_truncate64(struct lwp *, void *, register_t *);
int sys_ftruncate(struct lwp *, void *, register_t *);
int linux_sys_stat64(struct lwp *, void *, register_t *);

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_syscalls.c,v 1.13 2003/01/18 23:34:34 thorpej Exp $ */
/* $NetBSD: linux_syscalls.c,v 1.14 2003/06/23 21:26:33 christos Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.12 2003/01/18 08:02:47 thorpej Exp
* created from NetBSD: syscalls.master,v 1.13 2003/06/23 21:25:56 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.13 2003/01/18 23:34:34 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.14 2003/06/23 21:26:33 christos Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)
@ -225,7 +225,7 @@ const char *const linux_syscallnames[] = {
"#189 (unimplemented putpmsg)", /* 189 = unimplemented putpmsg */
"vfork", /* 190 = vfork */
"ugetrlimit", /* 191 = ugetrlimit */
"#192 (unimplemented mmap2)", /* 192 = unimplemented mmap2 */
"mmap2", /* 192 = mmap2 */
"truncate64", /* 193 = truncate64 */
"ftruncate64", /* 194 = ftruncate64 */
"stat64", /* 195 = stat64 */

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_sysent.c,v 1.13 2003/01/18 23:34:34 thorpej Exp $ */
/* $NetBSD: linux_sysent.c,v 1.14 2003/06/23 21:26:33 christos Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.12 2003/01/18 08:02:47 thorpej Exp
* created from NetBSD: syscalls.master,v 1.13 2003/06/23 21:25:56 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.13 2003/01/18 23:34:34 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.14 2003/06/23 21:26:33 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_43.h"
@ -418,8 +418,8 @@ struct sysent linux_sysent[] = {
sys___vfork14 }, /* 190 = vfork */
{ 2, s(struct linux_sys_ugetrlimit_args), 0,
linux_sys_ugetrlimit }, /* 191 = ugetrlimit */
{ 0, 0, 0,
linux_sys_nosys }, /* 192 = unimplemented mmap2 */
{ 6, s(struct linux_sys_mmap2_args), 0,
linux_sys_mmap2 }, /* 192 = mmap2 */
{ 2, s(struct linux_sys_truncate64_args), 0,
linux_sys_truncate64 }, /* 193 = truncate64 */
{ 2, s(struct sys_ftruncate_args), 0,

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscall.h,v 1.46 2003/01/18 23:36:09 thorpej Exp $ */
/* $NetBSD: linux_syscall.h,v 1.47 2003/06/23 21:26:35 christos Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.64 2003/01/18 08:02:48 thorpej Exp
* created from NetBSD: syscalls.master,v 1.65 2003/06/23 21:25:56 christos Exp
*/
/* syscall: "syscall" ret: "int" args: */
@ -482,8 +482,8 @@
/* syscall: "ugetrlimit" ret: "int" args: "int" "struct orlimit *" */
#define LINUX_SYS_ugetrlimit 191
/* syscall: "mmap" ret: "linux_off_t" args: "unsigned long" "size_t" "int" "int" "int" "linux_off_t" */
#define LINUX_SYS_mmap 192
/* syscall: "mmap2" ret: "linux_off_t" args: "unsigned long" "size_t" "int" "int" "int" "linux_off_t" */
#define LINUX_SYS_mmap2 192
/* syscall: "truncate64" ret: "int" args: "const char *" "off_t" */
#define LINUX_SYS_truncate64 193

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscallargs.h,v 1.46 2003/01/18 23:36:10 thorpej Exp $ */
/* $NetBSD: linux_syscallargs.h,v 1.47 2003/06/23 21:26:35 christos Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.64 2003/01/18 08:02:48 thorpej Exp
* created from NetBSD: syscalls.master,v 1.65 2003/06/23 21:25:56 christos Exp
*/
#ifndef _LINUX_SYS__SYSCALLARGS_H_
@ -769,7 +769,7 @@ int sys___getcwd(struct lwp *, void *, register_t *);
int linux_sys_sigaltstack(struct lwp *, void *, register_t *);
int sys___vfork14(struct lwp *, void *, register_t *);
int linux_sys_ugetrlimit(struct lwp *, void *, register_t *);
int linux_sys_mmap(struct lwp *, void *, register_t *);
int linux_sys_mmap2(struct lwp *, void *, register_t *);
int linux_sys_truncate64(struct lwp *, void *, register_t *);
int sys_ftruncate(struct lwp *, void *, register_t *);
int linux_sys_stat64(struct lwp *, void *, register_t *);

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_syscalls.c,v 1.47 2003/01/18 23:36:10 thorpej Exp $ */
/* $NetBSD: linux_syscalls.c,v 1.48 2003/06/23 21:26:36 christos Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.64 2003/01/18 08:02:48 thorpej Exp
* created from NetBSD: syscalls.master,v 1.65 2003/06/23 21:25:56 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.47 2003/01/18 23:36:10 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.48 2003/06/23 21:26:36 christos Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)
@ -222,7 +222,7 @@ const char *const linux_syscallnames[] = {
"#189 (unimplemented putpmsg)", /* 189 = unimplemented putpmsg */
"__vfork14", /* 190 = __vfork14 */
"ugetrlimit", /* 191 = ugetrlimit */
"mmap", /* 192 = mmap */
"mmap2", /* 192 = mmap2 */
"truncate64", /* 193 = truncate64 */
"linux_ftruncate64", /* 194 = linux_ftruncate64 */
"stat64", /* 195 = stat64 */

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_sysent.c,v 1.46 2003/01/18 23:36:10 thorpej Exp $ */
/* $NetBSD: linux_sysent.c,v 1.47 2003/06/23 21:26:37 christos Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.64 2003/01/18 08:02:48 thorpej Exp
* created from NetBSD: syscalls.master,v 1.65 2003/06/23 21:25:56 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.46 2003/01/18 23:36:10 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.47 2003/06/23 21:26:37 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_43.h"
@ -414,8 +414,8 @@ struct sysent linux_sysent[] = {
sys___vfork14 }, /* 190 = __vfork14 */
{ 2, s(struct linux_sys_ugetrlimit_args), 0,
linux_sys_ugetrlimit }, /* 191 = ugetrlimit */
{ 6, s(struct linux_sys_mmap_args), 0,
linux_sys_mmap }, /* 192 = mmap */
{ 6, s(struct linux_sys_mmap2_args), 0,
linux_sys_mmap2 }, /* 192 = mmap2 */
{ 2, s(struct linux_sys_truncate64_args), 0,
linux_sys_truncate64 }, /* 193 = truncate64 */
{ 2, s(struct sys_ftruncate_args), 0,

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscall.h,v 1.45 2003/01/18 23:36:48 thorpej Exp $ */
/* $NetBSD: linux_syscall.h,v 1.46 2003/06/23 21:26:38 christos Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.40 2003/01/18 08:02:49 thorpej Exp
* created from NetBSD: syscalls.master,v 1.41 2003/06/23 21:25:57 christos Exp
*/
/* syscall: "syscall" ret: "int" args: */
@ -468,6 +468,9 @@
/* syscall: "ugetrlimit" ret: "int" args: "int" "struct orlimit *" */
#define LINUX_SYS_ugetrlimit 191
/* syscall: "mmap2" ret: "linux_off_t" args: "unsigned long" "size_t" "int" "int" "int" "linux_off_t" */
#define LINUX_SYS_mmap2 192
/* syscall: "truncate64" ret: "int" args: "const char *" "off_t" */
#define LINUX_SYS_truncate64 193

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscallargs.h,v 1.44 2003/01/18 23:36:48 thorpej Exp $ */
/* $NetBSD: linux_syscallargs.h,v 1.45 2003/06/23 21:26:38 christos Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.40 2003/01/18 08:02:49 thorpej Exp
* created from NetBSD: syscalls.master,v 1.41 2003/06/23 21:25:57 christos Exp
*/
#ifndef _LINUX_SYS__SYSCALLARGS_H_
@ -741,6 +741,7 @@ int sys___getcwd(struct lwp *, void *, register_t *);
int linux_sys_sigaltstack(struct lwp *, void *, register_t *);
int sys___vfork14(struct lwp *, void *, register_t *);
int linux_sys_ugetrlimit(struct lwp *, void *, register_t *);
int linux_sys_mmap2(struct lwp *, void *, register_t *);
int linux_sys_truncate64(struct lwp *, void *, register_t *);
int sys_ftruncate(struct lwp *, void *, register_t *);
int linux_sys_stat64(struct lwp *, void *, register_t *);

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_syscalls.c,v 1.45 2003/01/18 23:36:49 thorpej Exp $ */
/* $NetBSD: linux_syscalls.c,v 1.46 2003/06/23 21:26:39 christos Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.40 2003/01/18 08:02:49 thorpej Exp
* created from NetBSD: syscalls.master,v 1.41 2003/06/23 21:25:57 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.45 2003/01/18 23:36:49 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.46 2003/06/23 21:26:39 christos Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)
@ -238,7 +238,7 @@ const char *const linux_syscallnames[] = {
"#189 (unimplemented putpmsg)", /* 189 = unimplemented putpmsg */
"__vfork14", /* 190 = __vfork14 */
"ugetrlimit", /* 191 = ugetrlimit */
"#192 (unimplemented mmap2)", /* 192 = unimplemented mmap2 */
"mmap2", /* 192 = mmap2 */
"truncate64", /* 193 = truncate64 */
"ftruncate64", /* 194 = ftruncate64 */
"stat64", /* 195 = stat64 */

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_sysent.c,v 1.45 2003/01/18 23:36:49 thorpej Exp $ */
/* $NetBSD: linux_sysent.c,v 1.46 2003/06/23 21:26:39 christos Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.40 2003/01/18 08:02:49 thorpej Exp
* created from NetBSD: syscalls.master,v 1.41 2003/06/23 21:25:57 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.45 2003/01/18 23:36:49 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.46 2003/06/23 21:26:39 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_netbsd.h"
@ -434,8 +434,8 @@ struct sysent linux_sysent[] = {
sys___vfork14 }, /* 190 = __vfork14 */
{ 2, s(struct linux_sys_ugetrlimit_args), 0,
linux_sys_ugetrlimit }, /* 191 = ugetrlimit */
{ 0, 0, 0,
linux_sys_nosys }, /* 192 = unimplemented mmap2 */
{ 6, s(struct linux_sys_mmap2_args), 0,
linux_sys_mmap2 }, /* 192 = mmap2 */
{ 2, s(struct linux_sys_truncate64_args), 0,
linux_sys_truncate64 }, /* 193 = truncate64 */
{ 2, s(struct sys_ftruncate_args), 0,

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscall.h,v 1.14 2003/01/18 23:37:09 thorpej Exp $ */
/* $NetBSD: linux_syscall.h,v 1.15 2003/06/23 21:26:40 christos Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.10 2003/01/18 08:02:49 thorpej Exp
* created from NetBSD: syscalls.master,v 1.11 2003/06/23 21:25:58 christos Exp
*/
/* syscall: "syscall" ret: "int" args: */
@ -506,6 +506,9 @@
/* syscall: "sigaltstack" ret: "int" args: "const struct linux_sigaltstack *" "struct linux_sigaltstack *" */
#define LINUX_SYS_sigaltstack 206
/* syscall: "mmap2" ret: "linux_off_t" args: "unsigned long" "size_t" "int" "int" "int" "linux_off_t" */
#define LINUX_SYS_mmap2 210
/* syscall: "truncate64" ret: "int" args: "const char *" "off_t" */
#define LINUX_SYS_truncate64 211

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscallargs.h,v 1.13 2003/01/18 23:37:10 thorpej Exp $ */
/* $NetBSD: linux_syscallargs.h,v 1.14 2003/06/23 21:26:41 christos Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.10 2003/01/18 08:02:49 thorpej Exp
* created from NetBSD: syscalls.master,v 1.11 2003/06/23 21:25:58 christos Exp
*/
#ifndef _LINUX_SYS__SYSCALLARGS_H_
@ -711,6 +711,7 @@ int linux_sys_pwrite(struct lwp *, void *, register_t *);
int linux_sys_chown(struct lwp *, void *, register_t *);
int sys___getcwd(struct lwp *, void *, register_t *);
int linux_sys_sigaltstack(struct lwp *, void *, register_t *);
int linux_sys_mmap2(struct lwp *, void *, register_t *);
int linux_sys_truncate64(struct lwp *, void *, register_t *);
int linux_sys_stat64(struct lwp *, void *, register_t *);
int linux_sys_lstat64(struct lwp *, void *, register_t *);

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_syscalls.c,v 1.13 2003/01/18 23:37:10 thorpej Exp $ */
/* $NetBSD: linux_syscalls.c,v 1.14 2003/06/23 21:26:41 christos Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.10 2003/01/18 08:02:49 thorpej Exp
* created from NetBSD: syscalls.master,v 1.11 2003/06/23 21:25:58 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.13 2003/01/18 23:37:10 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.14 2003/06/23 21:26:41 christos Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)
@ -242,7 +242,7 @@ const char *const linux_syscallnames[] = {
"#207 (unimplemented sendfile)", /* 207 = unimplemented sendfile */
"#208 (unimplemented)", /* 208 = unimplemented */
"#209 (unimplemented)", /* 209 = unimplemented */
"#210 (unimplemented mmap2)", /* 210 = unimplemented mmap2 */
"mmap2", /* 210 = mmap2 */
"truncate64", /* 211 = truncate64 */
"#212 (unimplemented ftruncate64)", /* 212 = unimplemented ftruncate64 */
"stat64", /* 213 = stat64 */

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_sysent.c,v 1.13 2003/01/18 23:37:10 thorpej Exp $ */
/* $NetBSD: linux_sysent.c,v 1.14 2003/06/23 21:26:42 christos Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.10 2003/01/18 08:02:49 thorpej Exp
* created from NetBSD: syscalls.master,v 1.11 2003/06/23 21:25:58 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.13 2003/01/18 23:37:10 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.14 2003/06/23 21:26:42 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_netbsd.h"
@ -452,8 +452,8 @@ struct sysent linux_sysent[] = {
linux_sys_nosys }, /* 208 = unimplemented */
{ 0, 0, 0,
linux_sys_nosys }, /* 209 = unimplemented */
{ 0, 0, 0,
linux_sys_nosys }, /* 210 = unimplemented mmap2 */
{ 6, s(struct linux_sys_mmap2_args), 0,
linux_sys_mmap2 }, /* 210 = mmap2 */
{ 2, s(struct linux_sys_truncate64_args), 0,
linux_sys_truncate64 }, /* 211 = truncate64 */
{ 0, 0, 0,

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscall.h,v 1.20 2003/01/18 23:37:35 thorpej Exp $ */
/* $NetBSD: linux_syscall.h,v 1.21 2003/06/23 21:26:42 christos Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.14 2003/01/18 08:02:50 thorpej Exp
* created from NetBSD: syscalls.master,v 1.15 2003/06/23 21:25:58 christos Exp
*/
/* syscall: "syscall" ret: "int" args: */
@ -474,6 +474,9 @@
/* syscall: "ugetrlimit" ret: "int" args: "int" "struct rlimit *" */
#define LINUX_SYS_ugetrlimit 190
/* syscall: "mmap2" ret: "linux_off_t" args: "unsigned long" "size_t" "int" "int" "int" "linux_off_t" */
#define LINUX_SYS_mmap2 192
/* syscall: "truncate64" ret: "int" args: "const char *" "off_t" */
#define LINUX_SYS_truncate64 193

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscallargs.h,v 1.19 2003/01/18 23:37:35 thorpej Exp $ */
/* $NetBSD: linux_syscallargs.h,v 1.20 2003/06/23 21:26:43 christos Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.14 2003/01/18 08:02:50 thorpej Exp
* created from NetBSD: syscalls.master,v 1.15 2003/06/23 21:25:58 christos Exp
*/
#ifndef _LINUX_SYS__SYSCALLARGS_H_
@ -702,6 +702,7 @@ int sys___getcwd(struct lwp *, void *, register_t *);
int linux_sys_sigaltstack(struct lwp *, void *, register_t *);
int sys___vfork14(struct lwp *, void *, register_t *);
int linux_sys_ugetrlimit(struct lwp *, void *, register_t *);
int linux_sys_mmap2(struct lwp *, void *, register_t *);
int linux_sys_truncate64(struct lwp *, void *, register_t *);
int sys_ftruncate(struct lwp *, void *, register_t *);
int linux_sys_stat64(struct lwp *, void *, register_t *);

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_syscalls.c,v 1.19 2003/01/18 23:37:36 thorpej Exp $ */
/* $NetBSD: linux_syscalls.c,v 1.20 2003/06/23 21:26:43 christos Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.14 2003/01/18 08:02:50 thorpej Exp
* created from NetBSD: syscalls.master,v 1.15 2003/06/23 21:25:58 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.19 2003/01/18 23:37:36 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.20 2003/06/23 21:26:43 christos Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)
@ -223,7 +223,7 @@ const char *const linux_syscallnames[] = {
"__vfork14", /* 189 = __vfork14 */
"ugetrlimit", /* 190 = ugetrlimit */
"#191 (unimplemented / * unused * /)", /* 191 = unimplemented / * unused * / */
"#192 (unimplemented mmap2)", /* 192 = unimplemented mmap2 */
"mmap2", /* 192 = mmap2 */
"truncate64", /* 193 = truncate64 */
"linux_ftruncate64", /* 194 = linux_ftruncate64 */
"stat64", /* 195 = stat64 */

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_sysent.c,v 1.20 2003/01/18 23:37:36 thorpej Exp $ */
/* $NetBSD: linux_sysent.c,v 1.21 2003/06/23 21:26:44 christos Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.14 2003/01/18 08:02:50 thorpej Exp
* created from NetBSD: syscalls.master,v 1.15 2003/06/23 21:25:58 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.20 2003/01/18 23:37:36 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.21 2003/06/23 21:26:44 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_netbsd.h"
@ -415,8 +415,8 @@ struct sysent linux_sysent[] = {
linux_sys_ugetrlimit }, /* 190 = ugetrlimit */
{ 0, 0, 0,
linux_sys_nosys }, /* 191 = unimplemented / * unused * / */
{ 0, 0, 0,
linux_sys_nosys }, /* 192 = unimplemented mmap2 */
{ 6, s(struct linux_sys_mmap2_args), 0,
linux_sys_mmap2 }, /* 192 = mmap2 */
{ 2, s(struct linux_sys_truncate64_args), 0,
linux_sys_truncate64 }, /* 193 = truncate64 */
{ 2, s(struct sys_ftruncate_args), 0,