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/913eb0ae22b4
branches:  trunk
changeset: 473699:913eb0ae22b4
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Tue Jun 15 23:29:17 1999 +0000

description:
Regen.

diffstat:

 sys/kern/init_sysent.c |  10 +++++-----
 sys/kern/syscalls.c    |   8 ++++----
 sys/sys/syscall.h      |  10 ++++++++--
 sys/sys/syscallargs.h  |  10 ++++++++--
 4 files changed, 25 insertions(+), 13 deletions(-)

diffs (122 lines):

diff -r 40db42510510 -r 913eb0ae22b4 sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c    Tue Jun 15 23:28:16 1999 +0000
+++ b/sys/kern/init_sysent.c    Tue Jun 15 23:29:17 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: init_sysent.c,v 1.106 1999/06/09 04:25:54 christos Exp $       */
+/*     $NetBSD: init_sysent.c,v 1.107 1999/06/15 23:29:17 thorpej Exp $        */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.92 1999/06/09 04:25:30 christos Exp 
+ * created from        NetBSD: syscalls.master,v 1.93 1999/06/15 23:28:16 thorpej Exp 
  */
 
 #include "opt_ktrace.h"
@@ -640,10 +640,10 @@
            sys_nanosleep },                    /* 240 = nanosleep */
        { 1, s(struct sys_fdatasync_args),
            sys_fdatasync },                    /* 241 = fdatasync */
+       { 1, s(struct sys_mlockall_args),
+           sys_mlockall },                     /* 242 = mlockall */
        { 0, 0,
-           sys_nosys },                        /* 242 = unimplemented */
-       { 0, 0,
-           sys_nosys },                        /* 243 = unimplemented */
+           sys_munlockall },                   /* 243 = munlockall */
        { 0, 0,
            sys_nosys },                        /* 244 = unimplemented */
        { 0, 0,
diff -r 40db42510510 -r 913eb0ae22b4 sys/kern/syscalls.c
--- a/sys/kern/syscalls.c       Tue Jun 15 23:28:16 1999 +0000
+++ b/sys/kern/syscalls.c       Tue Jun 15 23:29:17 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: syscalls.c,v 1.100 1999/06/09 04:25:54 christos Exp $  */
+/*     $NetBSD: syscalls.c,v 1.101 1999/06/15 23:29:17 thorpej Exp $   */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.92 1999/06/09 04:25:30 christos Exp 
+ * created from        NetBSD: syscalls.master,v 1.93 1999/06/15 23:28:16 thorpej Exp 
  */
 
 #if defined(_KERNEL) && !defined(_LKM)
@@ -330,8 +330,8 @@
        "#239 (unimplemented timer_getoverrun)",                /* 239 = unimplemented timer_getoverrun */
        "nanosleep",                    /* 240 = nanosleep */
        "fdatasync",                    /* 241 = fdatasync */
-       "#242 (unimplemented)",         /* 242 = unimplemented */
-       "#243 (unimplemented)",         /* 243 = unimplemented */
+       "mlockall",                     /* 242 = mlockall */
+       "munlockall",                   /* 243 = munlockall */
        "#244 (unimplemented)",         /* 244 = unimplemented */
        "#245 (unimplemented)",         /* 245 = unimplemented */
        "#246 (unimplemented)",         /* 246 = unimplemented */
diff -r 40db42510510 -r 913eb0ae22b4 sys/sys/syscall.h
--- a/sys/sys/syscall.h Tue Jun 15 23:28:16 1999 +0000
+++ b/sys/sys/syscall.h Tue Jun 15 23:29:17 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: syscall.h,v 1.99 1999/06/09 04:27:01 christos Exp $    */
+/*     $NetBSD: syscall.h,v 1.100 1999/06/15 23:29:17 thorpej Exp $    */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.92 1999/06/09 04:25:30 christos Exp 
+ * created from        NetBSD: syscalls.master,v 1.93 1999/06/15 23:28:16 thorpej Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -599,6 +599,12 @@
 /* syscall: "fdatasync" ret: "int" args: "int" */
 #define        SYS_fdatasync   241
 
+/* syscall: "mlockall" ret: "int" args: "int" */
+#define        SYS_mlockall    242
+
+/* syscall: "munlockall" ret: "int" args: */
+#define        SYS_munlockall  243
+
 /* syscall: "__posix_rename" ret: "int" args: "const char *" "const char *" */
 #define        SYS___posix_rename      270
 
diff -r 40db42510510 -r 913eb0ae22b4 sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h     Tue Jun 15 23:28:16 1999 +0000
+++ b/sys/sys/syscallargs.h     Tue Jun 15 23:29:17 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: syscallargs.h,v 1.80 1999/06/09 04:27:01 christos Exp $        */
+/*     $NetBSD: syscallargs.h,v 1.81 1999/06/15 23:29:17 thorpej Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.92 1999/06/09 04:25:30 christos Exp 
+ * created from        NetBSD: syscalls.master,v 1.93 1999/06/15 23:28:16 thorpej Exp 
  */
 
 #ifndef _SYS__SYSCALLARGS_H_
@@ -1022,6 +1022,10 @@
        syscallarg(int) fd;
 };
 
+struct sys_mlockall_args {
+       syscallarg(int) flags;
+};
+
 struct sys___posix_rename_args {
        syscallarg(const char *) from;
        syscallarg(const char *) to;
@@ -1411,6 +1415,8 @@
 int    sys_clock_getres        __P((struct proc *, void *, register_t *));
 int    sys_nanosleep   __P((struct proc *, void *, register_t *));
 int    sys_fdatasync   __P((struct proc *, void *, register_t *));
+int    sys_mlockall    __P((struct proc *, void *, register_t *));
+int    sys_munlockall  __P((struct proc *, void *, register_t *));
 int    sys___posix_rename      __P((struct proc *, void *, register_t *));
 int    sys_swapctl     __P((struct proc *, void *, register_t *));
 int    sys_getdents    __P((struct proc *, void *, register_t *));



Home | Main Index | Thread Index | Old Index