Regen.
This commit is contained in:
parent
0cec533f77
commit
ad528dfdf0
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: init_sysent.c,v 1.106 1999/06/09 04:25:54 christos Exp $ */
|
||||
/* $NetBSD: init_sysent.c,v 1.107 1999/06/15 23:29:17 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.92 1999/06/09 04:25:30 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.93 1999/06/15 23:28:16 thorpej Exp
|
||||
*/
|
||||
|
||||
#include "opt_ktrace.h"
|
||||
@ -640,10 +640,10 @@ struct sysent sysent[] = {
|
||||
sys_nanosleep }, /* 240 = nanosleep */
|
||||
{ 1, s(struct sys_fdatasync_args),
|
||||
sys_fdatasync }, /* 241 = fdatasync */
|
||||
{ 1, s(struct sys_mlockall_args),
|
||||
sys_mlockall }, /* 242 = mlockall */
|
||||
{ 0, 0,
|
||||
sys_nosys }, /* 242 = unimplemented */
|
||||
{ 0, 0,
|
||||
sys_nosys }, /* 243 = unimplemented */
|
||||
sys_munlockall }, /* 243 = munlockall */
|
||||
{ 0, 0,
|
||||
sys_nosys }, /* 244 = unimplemented */
|
||||
{ 0, 0,
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: syscalls.c,v 1.100 1999/06/09 04:25:54 christos Exp $ */
|
||||
/* $NetBSD: syscalls.c,v 1.101 1999/06/15 23:29:17 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.92 1999/06/09 04:25:30 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.93 1999/06/15 23:28:16 thorpej Exp
|
||||
*/
|
||||
|
||||
#if defined(_KERNEL) && !defined(_LKM)
|
||||
@ -330,8 +330,8 @@ char *syscallnames[] = {
|
||||
"#239 (unimplemented timer_getoverrun)", /* 239 = unimplemented timer_getoverrun */
|
||||
"nanosleep", /* 240 = nanosleep */
|
||||
"fdatasync", /* 241 = fdatasync */
|
||||
"#242 (unimplemented)", /* 242 = unimplemented */
|
||||
"#243 (unimplemented)", /* 243 = unimplemented */
|
||||
"mlockall", /* 242 = mlockall */
|
||||
"munlockall", /* 243 = munlockall */
|
||||
"#244 (unimplemented)", /* 244 = unimplemented */
|
||||
"#245 (unimplemented)", /* 245 = unimplemented */
|
||||
"#246 (unimplemented)", /* 246 = unimplemented */
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: syscall.h,v 1.99 1999/06/09 04:27:01 christos Exp $ */
|
||||
/* $NetBSD: syscall.h,v 1.100 1999/06/15 23:29:17 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.92 1999/06/09 04:25:30 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.93 1999/06/15 23:28:16 thorpej Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: "int" "..." */
|
||||
@ -599,6 +599,12 @@
|
||||
/* syscall: "fdatasync" ret: "int" args: "int" */
|
||||
#define SYS_fdatasync 241
|
||||
|
||||
/* syscall: "mlockall" ret: "int" args: "int" */
|
||||
#define SYS_mlockall 242
|
||||
|
||||
/* syscall: "munlockall" ret: "int" args: */
|
||||
#define SYS_munlockall 243
|
||||
|
||||
/* syscall: "__posix_rename" ret: "int" args: "const char *" "const char *" */
|
||||
#define SYS___posix_rename 270
|
||||
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: syscallargs.h,v 1.80 1999/06/09 04:27:01 christos Exp $ */
|
||||
/* $NetBSD: syscallargs.h,v 1.81 1999/06/15 23:29:17 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.92 1999/06/09 04:25:30 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.93 1999/06/15 23:28:16 thorpej Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS__SYSCALLARGS_H_
|
||||
@ -1022,6 +1022,10 @@ struct sys_fdatasync_args {
|
||||
syscallarg(int) fd;
|
||||
};
|
||||
|
||||
struct sys_mlockall_args {
|
||||
syscallarg(int) flags;
|
||||
};
|
||||
|
||||
struct sys___posix_rename_args {
|
||||
syscallarg(const char *) from;
|
||||
syscallarg(const char *) to;
|
||||
@ -1411,6 +1415,8 @@ int sys_clock_settime __P((struct proc *, void *, register_t *));
|
||||
int sys_clock_getres __P((struct proc *, void *, register_t *));
|
||||
int sys_nanosleep __P((struct proc *, void *, register_t *));
|
||||
int sys_fdatasync __P((struct proc *, void *, register_t *));
|
||||
int sys_mlockall __P((struct proc *, void *, register_t *));
|
||||
int sys_munlockall __P((struct proc *, void *, register_t *));
|
||||
int sys___posix_rename __P((struct proc *, void *, register_t *));
|
||||
int sys_swapctl __P((struct proc *, void *, register_t *));
|
||||
int sys_getdents __P((struct proc *, void *, register_t *));
|
||||
|
Loading…
Reference in New Issue
Block a user