Regen.
This commit is contained in:
parent
af747826c6
commit
7ee33b9890
|
@ -2,7 +2,7 @@
|
|||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.31 1996/02/27 04:20:41 jonathan Exp
|
||||
* created from NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -490,8 +490,8 @@ struct sysent sysent[] = {
|
|||
sys_munlock }, /* 204 = munlock */
|
||||
{ 1, s(struct sys_undelete_args),
|
||||
sys_undelete }, /* 205 = undelete */
|
||||
{ 0, 0,
|
||||
sys_nosys }, /* 206 = unimplemented */
|
||||
{ 2, s(struct sys_futimes_args),
|
||||
sys_futimes }, /* 206 = futimes */
|
||||
{ 0, 0,
|
||||
sys_nosys }, /* 207 = unimplemented */
|
||||
{ 0, 0,
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.31 1996/02/27 04:20:41 jonathan Exp
|
||||
* created from NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp
|
||||
*/
|
||||
|
||||
char *syscallnames[] = {
|
||||
|
@ -247,7 +247,7 @@ char *syscallnames[] = {
|
|||
"mlock", /* 203 = mlock */
|
||||
"munlock", /* 204 = munlock */
|
||||
"undelete", /* 205 = undelete */
|
||||
"#206 (unimplemented)", /* 206 = unimplemented */
|
||||
"futimes", /* 206 = futimes */
|
||||
"#207 (unimplemented)", /* 207 = unimplemented */
|
||||
"#208 (unimplemented)", /* 208 = unimplemented */
|
||||
"#209 (unimplemented)", /* 209 = unimplemented */
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.31 1996/02/27 04:20:41 jonathan Exp
|
||||
* created from NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp
|
||||
*/
|
||||
|
||||
#define SYS_syscall 0
|
||||
|
@ -193,6 +193,7 @@
|
|||
#define SYS_mlock 203
|
||||
#define SYS_munlock 204
|
||||
#define SYS_undelete 205
|
||||
#define SYS_futimes 206
|
||||
#define SYS___semctl 220
|
||||
#define SYS_semget 221
|
||||
#define SYS_semop 222
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.31 1996/02/27 04:20:41 jonathan Exp
|
||||
* created from NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp
|
||||
*/
|
||||
|
||||
#define syscallarg(x) union { x datum; register_t pad; }
|
||||
|
@ -877,6 +877,11 @@ struct sys_undelete_args {
|
|||
syscallarg(char *) path;
|
||||
};
|
||||
|
||||
struct sys_futimes_args {
|
||||
syscallarg(int) fd;
|
||||
syscallarg(struct timeval *) tptr;
|
||||
};
|
||||
|
||||
struct sys___semctl_args {
|
||||
syscallarg(int) semid;
|
||||
syscallarg(int) semnum;
|
||||
|
@ -1155,6 +1160,7 @@ int sys___sysctl __P((struct proc *, void *, register_t *));
|
|||
int sys_mlock __P((struct proc *, void *, register_t *));
|
||||
int sys_munlock __P((struct proc *, void *, register_t *));
|
||||
int sys_undelete __P((struct proc *, void *, register_t *));
|
||||
int sys_futimes __P((struct proc *, void *, register_t *));
|
||||
#ifdef LKM
|
||||
int sys_lkmnosys __P((struct proc *, void *, register_t *));
|
||||
int sys_lkmnosys __P((struct proc *, void *, register_t *));
|
||||
|
|
Loading…
Reference in New Issue