Regen (ftruncate fix).
This commit is contained in:
parent
12a8f9478e
commit
44d4cbded2
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: linux32_syscall.h,v 1.16 2007/04/11 11:51:19 njoly Exp $ */
|
||||
/* $NetBSD: linux32_syscall.h,v 1.17 2007/04/20 13:38:20 njoly Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.14 2007/04/11 11:45:55 njoly Exp
|
||||
* created from NetBSD: syscalls.master,v 1.15 2007/04/20 13:37:05 njoly Exp
|
||||
*/
|
||||
|
||||
#ifndef _LINUX32_SYS_SYSCALL_H_
|
||||
@ -236,8 +236,8 @@
|
||||
/* syscall: "truncate" ret: "int" args: "const netbsd32_charp" "netbsd32_long" */
|
||||
#define LINUX32_SYS_truncate 92
|
||||
|
||||
/* syscall: "ftruncate" ret: "int" args: "int" "long" */
|
||||
#define LINUX32_SYS_ftruncate 93
|
||||
/* syscall: "compat_43_netbsd32_oftruncate" ret: "int" args: "int" "netbsd32_long" */
|
||||
#define LINUX32_SYS_compat_43_netbsd32_oftruncate 93
|
||||
|
||||
/* syscall: "fchmod" ret: "int" args: "int" "int" */
|
||||
#define LINUX32_SYS_fchmod 94
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: linux32_syscallargs.h,v 1.16 2007/04/11 11:51:20 njoly Exp $ */
|
||||
/* $NetBSD: linux32_syscallargs.h,v 1.17 2007/04/20 13:38:22 njoly Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.14 2007/04/11 11:45:55 njoly Exp
|
||||
* created from NetBSD: syscalls.master,v 1.15 2007/04/20 13:37:05 njoly Exp
|
||||
*/
|
||||
|
||||
#ifndef _LINUX32_SYS_SYSCALLARGS_H_
|
||||
@ -552,7 +552,7 @@ int netbsd32_munmap(struct lwp *, void *, register_t *);
|
||||
|
||||
int linux32_sys_truncate(struct lwp *, void *, register_t *);
|
||||
|
||||
int compat_43_sys_ftruncate(struct lwp *, void *, register_t *);
|
||||
int compat_43_netbsd32_oftruncate(struct lwp *, void *, register_t *);
|
||||
|
||||
int sys_fchmod(struct lwp *, void *, register_t *);
|
||||
|
||||
|
@ -1,14 +1,14 @@
|
||||
/* $NetBSD: linux32_syscalls.c,v 1.16 2007/04/11 11:51:20 njoly Exp $ */
|
||||
/* $NetBSD: linux32_syscalls.c,v 1.17 2007/04/20 13:38:22 njoly Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.14 2007/04/11 11:45:55 njoly Exp
|
||||
* created from NetBSD: syscalls.master,v 1.15 2007/04/20 13:37:05 njoly Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: linux32_syscalls.c,v 1.16 2007/04/11 11:51:20 njoly Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: linux32_syscalls.c,v 1.17 2007/04/20 13:38:22 njoly Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#if defined(_KERNEL_OPT)
|
||||
@ -129,7 +129,7 @@ const char *const linux32_syscallnames[] = {
|
||||
"old_mmap", /* 90 = old_mmap */
|
||||
"netbsd32_munmap", /* 91 = netbsd32_munmap */
|
||||
"truncate", /* 92 = truncate */
|
||||
"ftruncate", /* 93 = ftruncate */
|
||||
"compat_43_netbsd32_oftruncate", /* 93 = compat_43_netbsd32_oftruncate */
|
||||
"fchmod", /* 94 = fchmod */
|
||||
"fchown16", /* 95 = fchown16 */
|
||||
"getpriority", /* 96 = getpriority */
|
||||
|
@ -1,14 +1,14 @@
|
||||
/* $NetBSD: linux32_sysent.c,v 1.16 2007/04/11 11:51:20 njoly Exp $ */
|
||||
/* $NetBSD: linux32_sysent.c,v 1.17 2007/04/20 13:38:23 njoly Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.14 2007/04/11 11:45:55 njoly Exp
|
||||
* created from NetBSD: syscalls.master,v 1.15 2007/04/20 13:37:05 njoly Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: linux32_sysent.c,v 1.16 2007/04/11 11:51:20 njoly Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: linux32_sysent.c,v 1.17 2007/04/20 13:38:23 njoly Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#include "opt_compat_43.h"
|
||||
@ -222,8 +222,8 @@ struct sysent linux32_sysent[] = {
|
||||
netbsd32_munmap }, /* 91 = netbsd32_munmap */
|
||||
{ 2, s(struct linux32_sys_truncate_args), 0,
|
||||
linux32_sys_truncate }, /* 92 = truncate */
|
||||
{ 2, s(struct compat_43_sys_ftruncate_args), 0,
|
||||
compat_43_sys_ftruncate }, /* 93 = ftruncate */
|
||||
{ 2, s(struct compat_43_netbsd32_oftruncate_args), 0,
|
||||
compat_43_netbsd32_oftruncate }, /* 93 = compat_43_netbsd32_oftruncate */
|
||||
{ 2, s(struct sys_fchmod_args), 0,
|
||||
sys_fchmod }, /* 94 = fchmod */
|
||||
{ 3, s(struct linux32_sys_fchown16_args), 0,
|
||||
|
Loading…
Reference in New Issue
Block a user