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/9c185db95b77
branches:  trunk
changeset: 552029:9c185db95b77
user:      cl <cl%NetBSD.org@localhost>
date:      Tue Sep 16 13:49:23 2003 +0000

description:
Regen.

diffstat:

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

diffs (125 lines):

diff -r 0afa962cc1d0 -r 9c185db95b77 sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c    Tue Sep 16 13:46:24 2003 +0000
+++ b/sys/kern/init_sysent.c    Tue Sep 16 13:49:23 2003 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: init_sysent.c,v 1.146 2003/09/11 14:00:21 christos Exp $ */
+/* $NetBSD: init_sysent.c,v 1.147 2003/09/16 13:49:23 cl Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.129 2003/09/10 16:43:35 christos Exp 
+ * created from        NetBSD: syscalls.master,v 1.130 2003/09/16 13:46:25 cl Exp 
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.146 2003/09/11 14:00:21 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.147 2003/09/16 13:49:23 cl Exp $");
 
 #include "opt_ktrace.h"
 #include "opt_nfsserver.h"
@@ -915,8 +915,8 @@
            sys_sa_yield },                     /* 334 = sa_yield */
        { 1, s(struct sys_sa_preempt_args), 0,
            sys_sa_preempt },                   /* 335 = sa_preempt */
-       { 0, 0, 0,
-           sys_nosys },                        /* 336 = unimplemented */
+       { 3, s(struct sys_sa_unblockyield_args), 0,
+           sys_sa_unblockyield },              /* 336 = sa_unblockyield */
        { 0, 0, 0,
            sys_nosys },                        /* 337 = unimplemented */
        { 0, 0, 0,
diff -r 0afa962cc1d0 -r 9c185db95b77 sys/kern/syscalls.c
--- a/sys/kern/syscalls.c       Tue Sep 16 13:46:24 2003 +0000
+++ b/sys/kern/syscalls.c       Tue Sep 16 13:49:23 2003 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls.c,v 1.141 2003/09/11 14:00:21 christos Exp $ */
+/* $NetBSD: syscalls.c,v 1.142 2003/09/16 13:49:24 cl Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.129 2003/09/10 16:43:35 christos Exp 
+ * created from        NetBSD: syscalls.master,v 1.130 2003/09/16 13:46:25 cl Exp 
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.141 2003/09/11 14:00:21 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.142 2003/09/16 13:49:24 cl Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_ktrace.h"
@@ -475,7 +475,7 @@
        "sa_setconcurrency",                    /* 333 = sa_setconcurrency */
        "sa_yield",                     /* 334 = sa_yield */
        "sa_preempt",                   /* 335 = sa_preempt */
-       "#336 (unimplemented)",         /* 336 = unimplemented */
+       "sa_unblockyield",                      /* 336 = sa_unblockyield */
        "#337 (unimplemented)",         /* 337 = unimplemented */
        "#338 (unimplemented)",         /* 338 = unimplemented */
        "#339 (unimplemented)",         /* 339 = unimplemented */
diff -r 0afa962cc1d0 -r 9c185db95b77 sys/sys/syscall.h
--- a/sys/sys/syscall.h Tue Sep 16 13:46:24 2003 +0000
+++ b/sys/sys/syscall.h Tue Sep 16 13:49:23 2003 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscall.h,v 1.139 2003/09/11 14:00:22 christos Exp $ */
+/* $NetBSD: syscall.h,v 1.140 2003/09/16 13:49:25 cl Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.129 2003/09/10 16:43:35 christos Exp 
+ * created from        NetBSD: syscalls.master,v 1.130 2003/09/16 13:46:25 cl Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -949,6 +949,9 @@
 /* syscall: "sa_preempt" ret: "int" args: "int" */
 #define        SYS_sa_preempt  335
 
+/* syscall: "sa_unblockyield" ret: "int" args: "int" "void *" "stack_t *" */
+#define        SYS_sa_unblockyield     336
+
 /* syscall: "__sigaction_sigtramp" ret: "int" args: "int" "const struct sigaction *" "struct sigaction *" "void *" "int" */
 #define        SYS___sigaction_sigtramp        340
 
diff -r 0afa962cc1d0 -r 9c185db95b77 sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h     Tue Sep 16 13:46:24 2003 +0000
+++ b/sys/sys/syscallargs.h     Tue Sep 16 13:49:23 2003 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscallargs.h,v 1.121 2003/09/11 14:00:22 christos Exp $ */
+/* $NetBSD: syscallargs.h,v 1.122 2003/09/16 13:49:25 cl Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.129 2003/09/10 16:43:35 christos Exp 
+ * created from        NetBSD: syscalls.master,v 1.130 2003/09/16 13:46:25 cl Exp 
  */
 
 #ifndef _SYS__SYSCALLARGS_H_
@@ -1412,6 +1412,12 @@
        syscallarg(int) sa_id;
 };
 
+struct sys_sa_unblockyield_args {
+       syscallarg(int) sa_id;
+       syscallarg(void *) up_preempted;
+       syscallarg(stack_t *) up_stack;
+};
+
 struct sys___sigaction_sigtramp_args {
        syscallarg(int) signum;
        syscallarg(const struct sigaction *) nsa;
@@ -1795,6 +1801,7 @@
 int    sys_sa_setconcurrency(struct lwp *, void *, register_t *);
 int    sys_sa_yield(struct lwp *, void *, register_t *);
 int    sys_sa_preempt(struct lwp *, void *, register_t *);
+int    sys_sa_unblockyield(struct lwp *, void *, register_t *);
 int    sys___sigaction_sigtramp(struct lwp *, void *, register_t *);
 int    sys_pmc_get_info(struct lwp *, void *, register_t *);
 int    sys_pmc_control(struct lwp *, void *, register_t *);



Home | Main Index | Thread Index | Old Index