Regen.
authordownsj <downsj@openbsd.org>
Sun, 26 Jan 1997 05:20:57 +0000 (05:20 +0000)
committerdownsj <downsj@openbsd.org>
Sun, 26 Jan 1997 05:20:57 +0000 (05:20 +0000)
sys/kern/init_sysent.c
sys/kern/syscalls.c
sys/kern/vnode_if.c
sys/sys/syscall.h
sys/sys/syscallargs.h
sys/sys/vnode_if.h

index 6d3627b..07d1800 100644 (file)
@@ -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 <sys/param.h>
@@ -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 */
 };
 
index 7d5dfa4..9392b9f 100644 (file)
@@ -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 */
 };
index 3e6976f..14f1f0c 100644 (file)
@@ -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 
  */
 
 /*
index 03319a2..cf8550c 100644 (file)
@@ -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
 #define        SYS_rfork       251
 #define        SYS_poll        252
 #define        SYS_issetugid   253
-#define        SYS_MAXSYSCALL  254
+#define        SYS_lchown      254
+#define        SYS_MAXSYSCALL  255
index 292c1ea..1cd547a 100644 (file)
@@ -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 *));
index d5997cb..abf129f 100644 (file)
@@ -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 
  */
 
 /*