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/bd6cd473d043
branches:  trunk
changeset: 779131:bd6cd473d043
user:      christos <christos%NetBSD.org@localhost>
date:      Sat May 05 19:49:13 2012 +0000

description:
regen

diffstat:

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

diffs (131 lines):

diff -r 4acac728f5d6 -r bd6cd473d043 sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c    Sat May 05 19:44:02 2012 +0000
+++ b/sys/kern/init_sysent.c    Sat May 05 19:49:13 2012 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: init_sysent.c,v 1.264 2012/03/08 21:59:30 joerg Exp $ */
+/* $NetBSD: init_sysent.c,v 1.265 2012/05/05 19:49:13 christos Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.258 2012/03/08 21:55:45 joerg Exp
+ * created from        NetBSD: syscalls.master,v 1.259 2012/05/05 19:37:37 christos Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.264 2012/03/08 21:59:30 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.265 2012/05/05 19:49:13 christos Exp $");
 
 #include "opt_modular.h"
 #include "opt_ntp.h"
@@ -550,8 +550,8 @@
            (sy_call_t *)sys_reboot },          /* 208 = reboot */
        { ns(struct sys_poll_args), 0,
            (sy_call_t *)sys_poll },            /* 209 = poll */
-       { 0, 0, 0,
-           sys_nosys },                        /* 210 = unimplemented */
+       { ns(struct sys_afssys_args), 0,
+           (sy_call_t *)sys_nomodule },        /* 210 = afssys */
        { 0, 0, 0,
            sys_nosys },                        /* 211 = unimplemented */
        { 0, 0, 0,
diff -r 4acac728f5d6 -r bd6cd473d043 sys/kern/syscalls.c
--- a/sys/kern/syscalls.c       Sat May 05 19:44:02 2012 +0000
+++ b/sys/kern/syscalls.c       Sat May 05 19:49:13 2012 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls.c,v 1.255 2012/03/08 21:59:30 joerg Exp $ */
+/* $NetBSD: syscalls.c,v 1.256 2012/05/05 19:49:13 christos Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.258 2012/03/08 21:55:45 joerg Exp
+ * created from        NetBSD: syscalls.master,v 1.259 2012/05/05 19:37:37 christos Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.255 2012/03/08 21:59:30 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.256 2012/05/05 19:49:13 christos Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_modular.h"
@@ -250,7 +250,7 @@
        /* 207 */       "getpgid",
        /* 208 */       "reboot",
        /* 209 */       "poll",
-       /* 210 */       "#210 (unimplemented)",
+       /* 210 */       "afssys",
        /* 211 */       "#211 (unimplemented)",
        /* 212 */       "#212 (unimplemented)",
        /* 213 */       "#213 (unimplemented)",
diff -r 4acac728f5d6 -r bd6cd473d043 sys/sys/syscall.h
--- a/sys/sys/syscall.h Sat May 05 19:44:02 2012 +0000
+++ b/sys/sys/syscall.h Sat May 05 19:49:13 2012 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscall.h,v 1.251 2012/03/08 21:59:31 joerg Exp $ */
+/* $NetBSD: syscall.h,v 1.252 2012/05/05 19:49:13 christos Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.258 2012/03/08 21:55:45 joerg Exp
+ * created from        NetBSD: syscalls.master,v 1.259 2012/05/05 19:37:37 christos Exp
  */
 
 #ifndef _SYS_SYSCALL_H_
@@ -589,6 +589,9 @@
 /* syscall: "poll" ret: "int" args: "struct pollfd *" "u_int" "int" */
 #define        SYS_poll        209
 
+/* syscall: "afssys" ret: "int" args: "long" "long" "long" "long" "long" "long" "long" */
+#define        SYS_afssys      210
+
 #if defined(SYSVSEM) || !defined(_KERNEL_OPT)
 /* syscall: "compat_14___semctl" ret: "int" args: "int" "int" "int" "union __semun *" */
 #define        SYS_compat_14___semctl  220
diff -r 4acac728f5d6 -r bd6cd473d043 sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h     Sat May 05 19:44:02 2012 +0000
+++ b/sys/sys/syscallargs.h     Sat May 05 19:49:13 2012 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscallargs.h,v 1.234 2012/03/08 21:59:32 joerg Exp $ */
+/* $NetBSD: syscallargs.h,v 1.235 2012/05/05 19:49:13 christos Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.258 2012/03/08 21:55:45 joerg Exp
+ * created from        NetBSD: syscalls.master,v 1.259 2012/05/05 19:37:37 christos Exp
  */
 
 #ifndef _SYS_SYSCALLARGS_H_
@@ -1121,6 +1121,17 @@
        syscallarg(int) timeout;
 };
 check_syscall_args(sys_poll)
+
+struct sys_afssys_args {
+       syscallarg(long) id;
+       syscallarg(long) a1;
+       syscallarg(long) a2;
+       syscallarg(long) a3;
+       syscallarg(long) a4;
+       syscallarg(long) a5;
+       syscallarg(long) a6;
+};
+check_syscall_args(sys_afssys)
 #if defined(SYSVSEM) || !defined(_KERNEL_OPT)
 
 struct compat_14_sys___semctl_args {
@@ -3088,6 +3099,8 @@
 
 int    sys_poll(struct lwp *, const struct sys_poll_args *, register_t *);
 
+int    sys_afssys(struct lwp *, const struct sys_afssys_args *, register_t *);
+
 #if defined(SYSVSEM) || !defined(_KERNEL_OPT)
 int    compat_14_sys___semctl(struct lwp *, const struct compat_14_sys___semctl_args *, register_t *);
 



Home | Main Index | Thread Index | Old Index