From 89e3d85f7ec48fd6630c3e582695f3590a6f08d0 Mon Sep 17 00:00:00 2001 From: downsj Date: Sun, 26 Jan 1997 05:20:57 +0000 Subject: [PATCH] Regen. --- sys/kern/init_sysent.c | 4 +++- sys/kern/syscalls.c | 3 ++- sys/kern/vnode_if.c | 2 +- sys/sys/syscall.h | 5 +++-- sys/sys/syscallargs.h | 9 ++++++++- sys/sys/vnode_if.h | 2 +- 6 files changed, 18 insertions(+), 7 deletions(-) diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 6d3627b3c1a..07d1800bda3 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.12 1996/10/29 03:46:28 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.13 1997/01/26 05:18:27 downsj Exp */ #include @@ -650,5 +650,7 @@ struct sysent sysent[] = { sys_poll }, /* 252 = poll */ { 0, 0, sys_issetugid }, /* 253 = issetugid */ + { 3, s(struct sys_lchown_args), + sys_lchown }, /* 254 = lchown */ }; diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 7d5dfa465c1..9392b9f7247 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -2,7 +2,7 @@ * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.12 1996/10/29 03:46:28 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.13 1997/01/26 05:18:27 downsj Exp */ char *syscallnames[] = { @@ -334,4 +334,5 @@ char *syscallnames[] = { "rfork", /* 251 = rfork */ "poll", /* 252 = poll */ "issetugid", /* 253 = issetugid */ + "lchown", /* 254 = lchown */ }; diff --git a/sys/kern/vnode_if.c b/sys/kern/vnode_if.c index 3e6976fe8af..14f1f0c5a09 100644 --- a/sys/kern/vnode_if.c +++ b/sys/kern/vnode_if.c @@ -5,7 +5,7 @@ * Created from the file: * OpenBSD: vnode_if.src,v 1.4 1996/05/22 11:47:12 deraadt Exp * by the script: - * OpenBSD + * OpenBSD: vnode_if.sh,v 1.3 1996/04/19 16:09:13 niklas Exp */ /* diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 03319a23e6f..cf8550cb56f 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -2,7 +2,7 @@ * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.12 1996/10/29 03:46:28 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.13 1997/01/26 05:18:27 downsj Exp */ #define SYS_syscall 0 @@ -210,4 +210,5 @@ #define SYS_rfork 251 #define SYS_poll 252 #define SYS_issetugid 253 -#define SYS_MAXSYSCALL 254 +#define SYS_lchown 254 +#define SYS_MAXSYSCALL 255 diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index 292c1eaa579..1cd547a5e07 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -2,7 +2,7 @@ * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.12 1996/10/29 03:46:28 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.13 1997/01/26 05:18:27 downsj Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -969,6 +969,12 @@ struct sys_poll_args { syscallarg(int) timeout; }; +struct sys_lchown_args { + syscallarg(char *) path; + syscallarg(int) uid; + syscallarg(int) gid; +}; + /* * System call prototypes. */ @@ -1218,3 +1224,4 @@ int sys_minherit __P((struct proc *, void *, register_t *)); int sys_rfork __P((struct proc *, void *, register_t *)); int sys_poll __P((struct proc *, void *, register_t *)); int sys_issetugid __P((struct proc *, void *, register_t *)); +int sys_lchown __P((struct proc *, void *, register_t *)); diff --git a/sys/sys/vnode_if.h b/sys/sys/vnode_if.h index d5997cb1b46..abf129f1126 100644 --- a/sys/sys/vnode_if.h +++ b/sys/sys/vnode_if.h @@ -5,7 +5,7 @@ * Created from the file: * OpenBSD: vnode_if.src,v 1.4 1996/05/22 11:47:12 deraadt Exp * by the script: - * OpenBSD + * OpenBSD: vnode_if.sh,v 1.3 1996/04/19 16:09:13 niklas Exp */ /* -- 2.20.1