Regen syscalls with proper id info.
This commit is contained in:
parent
6d90c35d73
commit
56cf2d9a90
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: netbsd32_syscall.h,v 1.98 2012/02/01 05:40:00 dholland Exp $ */
|
||||
/* $NetBSD: netbsd32_syscall.h,v 1.99 2012/02/01 05:42:17 dholland Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.89 2012/01/31 22:52:19 matt Exp
|
||||
* created from NetBSD: syscalls.master,v 1.91 2012/02/01 05:40:01 dholland Exp
|
||||
*/
|
||||
|
||||
#ifndef _NETBSD32_SYS_SYSCALL_H_
|
||||
|
@ -1257,6 +1257,9 @@
|
|||
/* syscall: "netbsd32_futimens" ret: "int" args: "int" "const netbsd32_timespecp_t" */
|
||||
#define NETBSD32_SYS_netbsd32_futimens 472
|
||||
|
||||
#define NETBSD32_SYS_MAXSYSCALL 473
|
||||
/* syscall: "netbsd32___quotactl" ret: "int" args: "const netbsd32_charp" "netbsd32_voidp" */
|
||||
#define NETBSD32_SYS_netbsd32___quotactl 473
|
||||
|
||||
#define NETBSD32_SYS_MAXSYSCALL 474
|
||||
#define NETBSD32_SYS_NSYSENT 512
|
||||
#endif /* _NETBSD32_SYS_SYSCALL_H_ */
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: netbsd32_syscallargs.h,v 1.98 2012/02/01 05:40:00 dholland Exp $ */
|
||||
/* $NetBSD: netbsd32_syscallargs.h,v 1.99 2012/02/01 05:42:17 dholland Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.89 2012/01/31 22:52:19 matt Exp
|
||||
* created from NetBSD: syscalls.master,v 1.91 2012/02/01 05:40:01 dholland Exp
|
||||
*/
|
||||
|
||||
#ifndef _NETBSD32_SYS_SYSCALLARGS_H_
|
||||
|
@ -2453,6 +2453,12 @@ struct netbsd32_futimens_args {
|
|||
};
|
||||
check_syscall_args(netbsd32_futimens)
|
||||
|
||||
struct netbsd32___quotactl_args {
|
||||
syscallarg(const netbsd32_charp) path;
|
||||
syscallarg(netbsd32_voidp) args;
|
||||
};
|
||||
check_syscall_args(netbsd32___quotactl)
|
||||
|
||||
/*
|
||||
* System call prototypes.
|
||||
*/
|
||||
|
@ -3269,4 +3275,6 @@ int netbsd32_unlinkat(struct lwp *, const struct netbsd32_unlinkat_args *, regis
|
|||
|
||||
int netbsd32_futimens(struct lwp *, const struct netbsd32_futimens_args *, register_t *);
|
||||
|
||||
int netbsd32___quotactl(struct lwp *, const struct netbsd32___quotactl_args *, register_t *);
|
||||
|
||||
#endif /* _NETBSD32_SYS_SYSCALLARGS_H_ */
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: netbsd32_syscalls.c,v 1.97 2012/02/01 05:40:00 dholland Exp $ */
|
||||
/* $NetBSD: netbsd32_syscalls.c,v 1.98 2012/02/01 05:42:17 dholland Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.89 2012/01/31 22:52:19 matt Exp
|
||||
* created from NetBSD: syscalls.master,v 1.91 2012/02/01 05:40:01 dholland Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.97 2012/02/01 05:40:00 dholland Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.98 2012/02/01 05:42:17 dholland Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#if defined(_KERNEL_OPT)
|
||||
|
@ -584,7 +584,7 @@ const char *const netbsd32_syscallnames[] = {
|
|||
/* 470 */ "netbsd32_symlinkat",
|
||||
/* 471 */ "netbsd32_unlinkat",
|
||||
/* 472 */ "netbsd32_futimens",
|
||||
/* 473 */ "# filler",
|
||||
/* 473 */ "netbsd32___quotactl",
|
||||
/* 474 */ "# filler",
|
||||
/* 475 */ "# filler",
|
||||
/* 476 */ "# filler",
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: netbsd32_sysent.c,v 1.97 2012/02/01 05:40:01 dholland Exp $ */
|
||||
/* $NetBSD: netbsd32_sysent.c,v 1.98 2012/02/01 05:42:17 dholland Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.89 2012/01/31 22:52:19 matt Exp
|
||||
* created from NetBSD: syscalls.master,v 1.91 2012/02/01 05:40:01 dholland Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.97 2012/02/01 05:40:01 dholland Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.98 2012/02/01 05:42:17 dholland Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#include "opt_compat_netbsd.h"
|
||||
|
@ -1172,8 +1172,8 @@ struct sysent netbsd32_sysent[] = {
|
|||
(sy_call_t *)netbsd32_unlinkat }, /* 471 = netbsd32_unlinkat */
|
||||
{ ns(struct netbsd32_futimens_args), 0,
|
||||
(sy_call_t *)netbsd32_futimens }, /* 472 = netbsd32_futimens */
|
||||
{ 0, 0, 0,
|
||||
sys_nosys }, /* 473 = filler */
|
||||
{ ns(struct netbsd32___quotactl_args), 0,
|
||||
(sy_call_t *)netbsd32___quotactl }, /* 473 = netbsd32___quotactl */
|
||||
{ 0, 0, 0,
|
||||
sys_nosys }, /* 474 = filler */
|
||||
{ 0, 0, 0,
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: init_sysent.c,v 1.259 2012/02/01 05:34:41 dholland Exp $ */
|
||||
/* $NetBSD: init_sysent.c,v 1.260 2012/02/01 05:42:17 dholland Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.252 2011/08/17 07:22:34 manu Exp
|
||||
* created from NetBSD: syscalls.master,v 1.253 2012/02/01 05:34:41 dholland Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.259 2012/02/01 05:34:41 dholland Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.260 2012/02/01 05:42:17 dholland Exp $");
|
||||
|
||||
#include "opt_modular.h"
|
||||
#include "opt_ntp.h"
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: syscalls.c,v 1.250 2012/02/01 05:34:41 dholland Exp $ */
|
||||
/* $NetBSD: syscalls.c,v 1.251 2012/02/01 05:42:18 dholland Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.252 2011/08/17 07:22:34 manu Exp
|
||||
* created from NetBSD: syscalls.master,v 1.253 2012/02/01 05:34:41 dholland Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.250 2012/02/01 05:34:41 dholland Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.251 2012/02/01 05:42:18 dholland Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#include "opt_modular.h"
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: rump_syscalls.h,v 1.53 2012/02/01 05:34:42 dholland Exp $ */
|
||||
/* $NetBSD: rump_syscalls.h,v 1.54 2012/02/01 05:42:18 dholland Exp $ */
|
||||
|
||||
/*
|
||||
* System call protos in rump namespace.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.252 2011/08/17 07:22:34 manu Exp
|
||||
* created from NetBSD: syscalls.master,v 1.253 2012/02/01 05:34:41 dholland Exp
|
||||
*/
|
||||
|
||||
#ifndef _RUMP_RUMP_SYSCALLS_H_
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: rump_syscalls.c,v 1.75 2012/02/01 05:34:42 dholland Exp $ */
|
||||
/* $NetBSD: rump_syscalls.c,v 1.76 2012/02/01 05:42:18 dholland Exp $ */
|
||||
|
||||
/*
|
||||
* System call vector and marshalling for rump.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.252 2011/08/17 07:22:34 manu Exp
|
||||
* created from NetBSD: syscalls.master,v 1.253 2012/02/01 05:34:41 dholland Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.75 2012/02/01 05:34:42 dholland Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.76 2012/02/01 05:42:18 dholland Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/fstypes.h>
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: syscall.h,v 1.246 2012/02/01 05:34:42 dholland Exp $ */
|
||||
/* $NetBSD: syscall.h,v 1.247 2012/02/01 05:42:18 dholland Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.252 2011/08/17 07:22:34 manu Exp
|
||||
* created from NetBSD: syscalls.master,v 1.253 2012/02/01 05:34:41 dholland Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSCALL_H_
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: syscallargs.h,v 1.229 2012/02/01 05:34:43 dholland Exp $ */
|
||||
/* $NetBSD: syscallargs.h,v 1.230 2012/02/01 05:42:18 dholland Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.252 2011/08/17 07:22:34 manu Exp
|
||||
* created from NetBSD: syscalls.master,v 1.253 2012/02/01 05:34:41 dholland Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSCALLARGS_H_
|
||||
|
|
Loading…
Reference in New Issue