diff options
| author | mrg <mrg@NetBSD.org> | 2000-04-17 14:33:11 +0000 |
|---|---|---|
| committer | mrg <mrg@NetBSD.org> | 2000-04-17 14:33:11 +0000 |
| commit | 9dc12ba15bbe2b3bc48c47d66c19b0a2b46bed50 (patch) | |
| tree | 47047f1276e8125d92519ba44283ce4b7c72750b /sys | |
| parent | a6f7a7855fb9d493e843e7f3e3b73eec3f088a0b (diff) | |
regen
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/kern/init_sysent.c | 6 | ||||
| -rw-r--r-- | sys/kern/syscalls.c | 5 | ||||
| -rw-r--r-- | sys/sys/syscall.h | 9 | ||||
| -rw-r--r-- | sys/sys/syscallargs.h | 10 |
4 files changed, 21 insertions, 9 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 5a4ec7ec0df..bc7669caa3b 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $NetBSD: init_sysent.c,v 1.113 2000/01/31 15:13:24 christos Exp $ */ +/* $NetBSD: init_sysent.c,v 1.114 2000/04/17 14:33:11 mrg Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.99 2000/01/31 15:12:30 christos Exp + * created from NetBSD: syscalls.master,v 1.100 2000/04/17 14:31:22 mrg Exp */ #include "opt_ktrace.h" @@ -785,5 +785,7 @@ struct sysent sysent[] = { { 0, 0, sys_nosys }, /* 303 = excluded __shmctl13 */ #endif + { 2, s(struct sys_lchflags_args), + sys_lchflags }, /* 304 = lchflags */ }; diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index f48cc7562eb..3e022f5726a 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $NetBSD: syscalls.c,v 1.107 2000/01/31 15:13:24 christos Exp $ */ +/* $NetBSD: syscalls.c,v 1.108 2000/04/17 14:33:12 mrg Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.99 2000/01/31 15:12:30 christos Exp + * created from NetBSD: syscalls.master,v 1.100 2000/04/17 14:31:22 mrg Exp */ #if defined(_KERNEL) && !defined(_LKM) @@ -404,4 +404,5 @@ char *syscallnames[] = { #else "#303 (excluded __shmctl13)", /* 303 = excluded __shmctl13 */ #endif + "lchflags", /* 304 = lchflags */ }; diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 303b28cd9cf..f7435446c05 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $NetBSD: syscall.h,v 1.106 2000/01/31 15:13:29 christos Exp $ */ +/* $NetBSD: syscall.h,v 1.107 2000/04/17 14:33:12 mrg Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.99 2000/01/31 15:12:30 christos Exp + * created from NetBSD: syscalls.master,v 1.100 2000/04/17 14:31:22 mrg Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -704,4 +704,7 @@ #define SYS___shmctl13 303 /* 303 is excluded __shmctl13 */ -#define SYS_MAXSYSCALL 304 +/* syscall: "lchflags" ret: "int" args: "const char *" "u_long" */ +#define SYS_lchflags 304 + +#define SYS_MAXSYSCALL 305 diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index c7694dd9206..8cc28ea55de 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $NetBSD: syscallargs.h,v 1.87 2000/01/31 15:13:29 christos Exp $ */ +/* $NetBSD: syscallargs.h,v 1.88 2000/04/17 14:33:12 mrg Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.99 2000/01/31 15:12:30 christos Exp + * created from NetBSD: syscalls.master,v 1.100 2000/04/17 14:31:22 mrg Exp */ #ifndef _SYS__SYSCALLARGS_H_ @@ -1203,6 +1203,11 @@ struct sys___shmctl13_args { syscallarg(struct shmid_ds *) buf; }; +struct sys_lchflags_args { + syscallarg(const char *) path; + syscallarg(u_long) flags; +}; + /* * System call prototypes. */ @@ -1493,4 +1498,5 @@ int sys___msgctl13 __P((struct proc *, void *, register_t *)); int sys___shmctl13 __P((struct proc *, void *, register_t *)); #else #endif +int sys_lchflags __P((struct proc *, void *, register_t *)); #endif /* _SYS__SYSCALLARGS_H_ */ |
