Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys regen



details:   https://anonhg.NetBSD.org/src/rev/df76014ecb4f
branches:  trunk
changeset: 485048:df76014ecb4f
user:      mrg <mrg%NetBSD.org@localhost>
date:      Mon Apr 17 14:33:11 2000 +0000

description:
regen

diffstat:

 sys/kern/init_sysent.c |   6 ++++--
 sys/kern/syscalls.c    |   5 +++--
 sys/sys/syscall.h      |   9 ++++++---
 sys/sys/syscallargs.h  |  10 ++++++++--
 4 files changed, 21 insertions(+), 9 deletions(-)

diffs (105 lines):

diff -r 8e83cf286439 -r df76014ecb4f sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c    Mon Apr 17 14:31:21 2000 +0000
+++ b/sys/kern/init_sysent.c    Mon Apr 17 14:33:11 2000 +0000
@@ -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 @@
        { 0, 0,
            sys_nosys },                        /* 303 = excluded __shmctl13 */
 #endif
+       { 2, s(struct sys_lchflags_args),
+           sys_lchflags },                     /* 304 = lchflags */
 };
 
diff -r 8e83cf286439 -r df76014ecb4f sys/kern/syscalls.c
--- a/sys/kern/syscalls.c       Mon Apr 17 14:31:21 2000 +0000
+++ b/sys/kern/syscalls.c       Mon Apr 17 14:33:11 2000 +0000
@@ -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 @@
 #else
        "#303 (excluded __shmctl13)",           /* 303 = excluded __shmctl13 */
 #endif
+       "lchflags",                     /* 304 = lchflags */
 };
diff -r 8e83cf286439 -r df76014ecb4f sys/sys/syscall.h
--- a/sys/sys/syscall.h Mon Apr 17 14:31:21 2000 +0000
+++ b/sys/sys/syscall.h Mon Apr 17 14:33:11 2000 +0000
@@ -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 -r 8e83cf286439 -r df76014ecb4f sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h     Mon Apr 17 14:31:21 2000 +0000
+++ b/sys/sys/syscallargs.h     Mon Apr 17 14:33:11 2000 +0000
@@ -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 @@
        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___shmctl13  __P((struct proc *, void *, register_t *));
 #else
 #endif
+int    sys_lchflags    __P((struct proc *, void *, register_t *));
 #endif /* _SYS__SYSCALLARGS_H_ */



Home | Main Index | Thread Index | Old Index