Regen.
This commit is contained in:
parent
bee019244f
commit
5fdbf26214
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: init_sysent.c,v 1.109 1999/07/12 22:04:00 kleink Exp $ */
|
||||
/* $NetBSD: init_sysent.c,v 1.110 1999/07/12 23:01:47 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.95 1999/07/12 21:55:21 kleink Exp
|
||||
* created from NetBSD: syscalls.master,v 1.96 1999/07/12 23:01:27 thorpej Exp
|
||||
*/
|
||||
|
||||
#include "opt_ktrace.h"
|
||||
@ -758,9 +758,5 @@ struct sysent sysent[] = {
|
||||
sys_fhstat }, /* 299 = fhstat */
|
||||
{ 2, s(struct sys_fhstatfs_args),
|
||||
sys_fhstatfs }, /* 300 = fhstatfs */
|
||||
{ 1, s(struct sys_getcontext_args),
|
||||
sys_getcontext }, /* 301 = getcontext */
|
||||
{ 1, s(struct sys_setcontext_args),
|
||||
sys_setcontext }, /* 302 = setcontext */
|
||||
};
|
||||
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: syscalls.c,v 1.103 1999/07/12 22:04:00 kleink Exp $ */
|
||||
/* $NetBSD: syscalls.c,v 1.104 1999/07/12 23:01:47 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.95 1999/07/12 21:55:21 kleink Exp
|
||||
* created from NetBSD: syscalls.master,v 1.96 1999/07/12 23:01:27 thorpej Exp
|
||||
*/
|
||||
|
||||
#if defined(_KERNEL) && !defined(_LKM)
|
||||
@ -389,6 +389,4 @@ char *syscallnames[] = {
|
||||
"fhopen", /* 298 = fhopen */
|
||||
"fhstat", /* 299 = fhstat */
|
||||
"fhstatfs", /* 300 = fhstatfs */
|
||||
"getcontext", /* 301 = getcontext */
|
||||
"setcontext", /* 302 = setcontext */
|
||||
};
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: syscall.h,v 1.102 1999/07/12 22:04:01 kleink Exp $ */
|
||||
/* $NetBSD: syscall.h,v 1.103 1999/07/12 23:01:48 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.95 1999/07/12 21:55:21 kleink Exp
|
||||
* created from NetBSD: syscalls.master,v 1.96 1999/07/12 23:01:27 thorpej Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: "int" "..." */
|
||||
@ -695,10 +695,4 @@
|
||||
/* syscall: "fhstatfs" ret: "int" args: "const fhandle_t *" "struct statfs *" */
|
||||
#define SYS_fhstatfs 300
|
||||
|
||||
/* syscall: "getcontext" ret: "int" args: "struct ucontext *" */
|
||||
#define SYS_getcontext 301
|
||||
|
||||
/* syscall: "setcontext" ret: "int" args: "const struct ucontext *" */
|
||||
#define SYS_setcontext 302
|
||||
|
||||
#define SYS_MAXSYSCALL 303
|
||||
#define SYS_MAXSYSCALL 301
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: syscallargs.h,v 1.83 1999/07/12 22:04:01 kleink Exp $ */
|
||||
/* $NetBSD: syscallargs.h,v 1.84 1999/07/12 23:01:48 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.95 1999/07/12 21:55:21 kleink Exp
|
||||
* created from NetBSD: syscalls.master,v 1.96 1999/07/12 23:01:27 thorpej Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS__SYSCALLARGS_H_
|
||||
@ -1184,14 +1184,6 @@ struct sys_fhstatfs_args {
|
||||
syscallarg(struct statfs *) buf;
|
||||
};
|
||||
|
||||
struct sys_getcontext_args {
|
||||
syscallarg(struct ucontext *) ucp;
|
||||
};
|
||||
|
||||
struct sys_setcontext_args {
|
||||
syscallarg(const struct ucontext *) ucp;
|
||||
};
|
||||
|
||||
/*
|
||||
* System call prototypes.
|
||||
*/
|
||||
@ -1470,6 +1462,4 @@ int sys_fchroot __P((struct proc *, void *, register_t *));
|
||||
int sys_fhopen __P((struct proc *, void *, register_t *));
|
||||
int sys_fhstat __P((struct proc *, void *, register_t *));
|
||||
int sys_fhstatfs __P((struct proc *, void *, register_t *));
|
||||
int sys_getcontext __P((struct proc *, void *, register_t *));
|
||||
int sys_setcontext __P((struct proc *, void *, register_t *));
|
||||
#endif /* _SYS__SYSCALLARGS_H_ */
|
||||
|
Loading…
Reference in New Issue
Block a user