Source-Changes-HG archive

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

[src/trunk]: src/sys Regenerate: Added __sigaction_sigtramp at #340.



details:   https://anonhg.NetBSD.org/src/rev/57319dd7cf1d
branches:  trunk
changeset: 533602:57319dd7cf1d
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Thu Jul 04 23:34:28 2002 +0000

description:
Regenerate: Added __sigaction_sigtramp at #340.

diffstat:

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

diffs (122 lines):

diff -r ab080eebabe3 -r 57319dd7cf1d sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c    Thu Jul 04 23:32:02 2002 +0000
+++ b/sys/kern/init_sysent.c    Thu Jul 04 23:34:28 2002 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: init_sysent.c,v 1.129 2002/05/03 00:22:15 eeh Exp $ */
+/* $NetBSD: init_sysent.c,v 1.130 2002/07/04 23:34:29 thorpej Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.111 2002/05/03 00:20:56 eeh Exp 
+ * created from        NetBSD: syscalls.master,v 1.112 2002/07/04 23:32:14 thorpej Exp 
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.129 2002/05/03 00:22:15 eeh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.130 2002/07/04 23:34:29 thorpej Exp $");
 
 #include "opt_ktrace.h"
 #include "opt_nfsserver.h"
@@ -881,8 +881,8 @@
            sys_nosys },                        /* 338 = unimplemented */
        { 0, 0, 0,
            sys_nosys },                        /* 339 = unimplemented */
-       { 0, 0, 0,
-           sys_nosys },                        /* 340 = filler */
+       { 5, s(struct sys___sigaction_sigtramp_args), 0,
+           sys___sigaction_sigtramp },         /* 340 = __sigaction_sigtramp */
        { 0, 0, 0,
            sys_nosys },                        /* 341 = filler */
        { 0, 0, 0,
diff -r ab080eebabe3 -r 57319dd7cf1d sys/kern/syscalls.c
--- a/sys/kern/syscalls.c       Thu Jul 04 23:32:02 2002 +0000
+++ b/sys/kern/syscalls.c       Thu Jul 04 23:34:28 2002 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls.c,v 1.124 2002/05/03 00:22:16 eeh Exp $ */
+/* $NetBSD: syscalls.c,v 1.125 2002/07/04 23:34:29 thorpej Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.111 2002/05/03 00:20:56 eeh Exp 
+ * created from        NetBSD: syscalls.master,v 1.112 2002/07/04 23:32:14 thorpej Exp 
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.124 2002/05/03 00:22:16 eeh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.125 2002/07/04 23:34:29 thorpej Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_ktrace.h"
@@ -460,4 +460,5 @@
        "#337 (unimplemented)",         /* 337 = unimplemented */
        "#338 (unimplemented)",         /* 338 = unimplemented */
        "#339 (unimplemented)",         /* 339 = unimplemented */
+       "__sigaction_sigtramp",                 /* 340 = __sigaction_sigtramp */
 };
diff -r ab080eebabe3 -r 57319dd7cf1d sys/sys/syscall.h
--- a/sys/sys/syscall.h Thu Jul 04 23:32:02 2002 +0000
+++ b/sys/sys/syscall.h Thu Jul 04 23:34:28 2002 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscall.h,v 1.122 2002/05/03 00:26:49 eeh Exp $ */
+/* $NetBSD: syscall.h,v 1.123 2002/07/04 23:34:28 thorpej Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.111 2002/05/03 00:20:56 eeh Exp 
+ * created from        NetBSD: syscalls.master,v 1.112 2002/07/04 23:32:14 thorpej Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -717,5 +717,8 @@
 /* syscall: "utrace" ret: "int" args: "const char *" "void *" "size_t" */
 #define        SYS_utrace      306
 
-#define        SYS_MAXSYSCALL  340
+/* syscall: "__sigaction_sigtramp" ret: "int" args: "int" "const struct sigaction *" "struct sigaction *" "void *" "int" */
+#define        SYS___sigaction_sigtramp        340
+
+#define        SYS_MAXSYSCALL  341
 #define        SYS_NSYSENT     512
diff -r ab080eebabe3 -r 57319dd7cf1d sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h     Thu Jul 04 23:32:02 2002 +0000
+++ b/sys/sys/syscallargs.h     Thu Jul 04 23:34:28 2002 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscallargs.h,v 1.104 2002/05/03 00:26:49 eeh Exp $ */
+/* $NetBSD: syscallargs.h,v 1.105 2002/07/04 23:34:28 thorpej Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.111 2002/05/03 00:20:56 eeh Exp 
+ * created from        NetBSD: syscalls.master,v 1.112 2002/07/04 23:32:14 thorpej Exp 
  */
 
 #ifndef _SYS__SYSCALLARGS_H_
@@ -1220,6 +1220,14 @@
        syscallarg(size_t) len;
 };
 
+struct sys___sigaction_sigtramp_args {
+       syscallarg(int) signum;
+       syscallarg(const struct sigaction *) nsa;
+       syscallarg(struct sigaction *) osa;
+       syscallarg(void *) tramp;
+       syscallarg(int) vers;
+};
+
 /*
  * System call prototypes.
  */
@@ -1529,4 +1537,5 @@
 int    sys_lchflags(struct proc *, void *, register_t *);
 int    sys_issetugid(struct proc *, void *, register_t *);
 int    sys_utrace(struct proc *, void *, register_t *);
+int    sys___sigaction_sigtramp(struct proc *, void *, register_t *);
 #endif /* _SYS__SYSCALLARGS_H_ */



Home | Main Index | Thread Index | Old Index