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/a7189fb45553
branches:  trunk
changeset: 474152:a7189fb45553
user:      wrstuden <wrstuden%NetBSD.org@localhost>
date:      Tue Jun 29 22:17:39 1999 +0000

description:
regen.

diffstat:

 sys/kern/syscalls.c   |  11 +++++------
 sys/sys/syscall.h     |  16 ++++++++++++----
 sys/sys/syscallargs.h |  25 ++++++++++++++++++++-----
 3 files changed, 37 insertions(+), 15 deletions(-)

diffs (132 lines):

diff -r c01eb2ec7602 -r a7189fb45553 sys/kern/syscalls.c
--- a/sys/kern/syscalls.c       Tue Jun 29 22:15:31 1999 +0000
+++ b/sys/kern/syscalls.c       Tue Jun 29 22:17:39 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: syscalls.c,v 1.101 1999/06/15 23:29:17 thorpej Exp $   */
+/*     $NetBSD: syscalls.c,v 1.102 1999/06/29 22:17:39 wrstuden Exp $  */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.93 1999/06/15 23:28:16 thorpej Exp 
+ * created from        NetBSD: syscalls.master,v 1.94 1999/06/29 22:15:31 wrstuden Exp 
  */
 
 #if defined(_KERNEL) && !defined(_LKM)
@@ -192,11 +192,7 @@
        "fstatfs",                      /* 158 = fstatfs */
        "#159 (unimplemented)",         /* 159 = unimplemented */
        "#160 (unimplemented)",         /* 160 = unimplemented */
-#if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
        "getfh",                        /* 161 = getfh */
-#else
-       "#161 (excluded getfh)",                /* 161 = excluded getfh */
-#endif
        "compat_09_ogetdomainname",     /* 162 = compat_09 ogetdomainname */
        "compat_09_osetdomainname",     /* 163 = compat_09 osetdomainname */
        "compat_09_ouname",     /* 164 = compat_09 ouname */
@@ -390,4 +386,7 @@
        "__sigreturn14",                        /* 295 = __sigreturn14 */
        "__getcwd",                     /* 296 = __getcwd */
        "fchroot",                      /* 297 = fchroot */
+       "fhopen",                       /* 298 = fhopen */
+       "fhstat",                       /* 299 = fhstat */
+       "fhstatfs",                     /* 300 = fhstatfs */
 };
diff -r c01eb2ec7602 -r a7189fb45553 sys/sys/syscall.h
--- a/sys/sys/syscall.h Tue Jun 29 22:15:31 1999 +0000
+++ b/sys/sys/syscall.h Tue Jun 29 22:17:39 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: syscall.h,v 1.100 1999/06/15 23:29:17 thorpej Exp $    */
+/*     $NetBSD: syscall.h,v 1.101 1999/06/29 22:17:39 wrstuden Exp $   */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.93 1999/06/15 23:28:16 thorpej Exp 
+ * created from        NetBSD: syscalls.master,v 1.94 1999/06/29 22:15:31 wrstuden Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -411,7 +411,6 @@
 /* syscall: "getfh" ret: "int" args: "const char *" "fhandle_t *" */
 #define        SYS_getfh       161
 
-                               /* 161 is excluded getfh */
 #define        SYS_compat_09_ogetdomainname    162
 
 #define        SYS_compat_09_osetdomainname    163
@@ -687,4 +686,13 @@
 /* syscall: "fchroot" ret: "int" args: "int" */
 #define        SYS_fchroot     297
 
-#define        SYS_MAXSYSCALL  298
+/* syscall: "fhopen" ret: "int" args: "const fhandle_t *" "int" */
+#define        SYS_fhopen      298
+
+/* syscall: "fhstat" ret: "int" args: "const fhandle_t *" "struct stat *" */
+#define        SYS_fhstat      299
+
+/* syscall: "fhstatfs" ret: "int" args: "const fhandle_t *" "struct statfs *" */
+#define        SYS_fhstatfs    300
+
+#define        SYS_MAXSYSCALL  301
diff -r c01eb2ec7602 -r a7189fb45553 sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h     Tue Jun 29 22:15:31 1999 +0000
+++ b/sys/sys/syscallargs.h     Tue Jun 29 22:17:39 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: syscallargs.h,v 1.81 1999/06/15 23:29:17 thorpej Exp $ */
+/*     $NetBSD: syscallargs.h,v 1.82 1999/06/29 22:17:39 wrstuden Exp $        */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.93 1999/06/15 23:28:16 thorpej Exp 
+ * created from        NetBSD: syscalls.master,v 1.94 1999/06/29 22:15:31 wrstuden Exp 
  */
 
 #ifndef _SYS__SYSCALLARGS_H_
@@ -1169,6 +1169,21 @@
        syscallarg(int) fd;
 };
 
+struct sys_fhopen_args {
+       syscallarg(const fhandle_t *) fhp;
+       syscallarg(int) flags;
+};
+
+struct sys_fhstat_args {
+       syscallarg(const fhandle_t *) fhp;
+       syscallarg(struct stat *) sb;
+};
+
+struct sys_fhstatfs_args {
+       syscallarg(const fhandle_t *) fhp;
+       syscallarg(struct statfs *) buf;
+};
+
 /*
  * System call prototypes.
  */
@@ -1322,10 +1337,7 @@
 int    compat_43_sys_getdirentries     __P((struct proc *, void *, register_t *));
 int    sys_statfs      __P((struct proc *, void *, register_t *));
 int    sys_fstatfs     __P((struct proc *, void *, register_t *));
-#if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
 int    sys_getfh       __P((struct proc *, void *, register_t *));
-#else
-#endif
 int    compat_09_sys_getdomainname     __P((struct proc *, void *, register_t *));
 int    compat_09_sys_setdomainname     __P((struct proc *, void *, register_t *));
 int    compat_09_sys_uname     __P((struct proc *, void *, register_t *));
@@ -1447,4 +1459,7 @@
 int    sys___sigreturn14       __P((struct proc *, void *, register_t *));
 int    sys___getcwd    __P((struct proc *, void *, register_t *));
 int    sys_fchroot     __P((struct proc *, void *, register_t *));
+int    sys_fhopen      __P((struct proc *, void *, register_t *));
+int    sys_fhstat      __P((struct proc *, void *, register_t *));
+int    sys_fhstatfs    __P((struct proc *, void *, register_t *));
 #endif /* _SYS__SYSCALLARGS_H_ */



Home | Main Index | Thread Index | Old Index