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/ecd598f96aaa
branches: trunk
changeset: 552317:ecd598f96aaa
user: christos <christos%NetBSD.org@localhost>
date: Tue Sep 23 14:34:38 2003 +0000
description:
Regen
diffstat:
sys/kern/init_sysent.c | 10 +++++-----
sys/kern/syscalls.c | 8 ++++----
sys/sys/syscall.h | 8 ++++----
sys/sys/syscallargs.h | 8 ++++----
4 files changed, 17 insertions(+), 17 deletions(-)
diffs (123 lines):
diff -r aaebb95e0834 -r ecd598f96aaa sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c Tue Sep 23 14:34:07 2003 +0000
+++ b/sys/kern/init_sysent.c Tue Sep 23 14:34:38 2003 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: init_sysent.c,v 1.147 2003/09/16 13:49:23 cl Exp $ */
+/* $NetBSD: init_sysent.c,v 1.148 2003/09/23 14:34:38 christos Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.130 2003/09/16 13:46:25 cl Exp
+ * created from NetBSD: syscalls.master,v 1.131 2003/09/23 14:34:07 christos Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.147 2003/09/16 13:49:23 cl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.148 2003/09/23 14:34:38 christos Exp $");
#include "opt_ktrace.h"
#include "opt_nfsserver.h"
@@ -805,8 +805,8 @@
sys_preadv }, /* 289 = preadv */
{ 5, s(struct sys_pwritev_args), 0,
sys_pwritev }, /* 290 = pwritev */
- { 3, s(struct sys___sigaction14_args), 0,
- sys___sigaction14 }, /* 291 = __sigaction14 */
+ { 3, s(struct compat_16_sys___sigaction14_args), 0,
+ compat_16(sys___sigaction14) }, /* 291 = compat_16 __sigaction14 */
{ 1, s(struct sys___sigpending14_args), 0,
sys___sigpending14 }, /* 292 = __sigpending14 */
{ 3, s(struct sys___sigprocmask14_args), 0,
diff -r aaebb95e0834 -r ecd598f96aaa sys/kern/syscalls.c
--- a/sys/kern/syscalls.c Tue Sep 23 14:34:07 2003 +0000
+++ b/sys/kern/syscalls.c Tue Sep 23 14:34:38 2003 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls.c,v 1.142 2003/09/16 13:49:24 cl Exp $ */
+/* $NetBSD: syscalls.c,v 1.143 2003/09/23 14:34:39 christos Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.130 2003/09/16 13:46:25 cl Exp
+ * created from NetBSD: syscalls.master,v 1.131 2003/09/23 14:34:07 christos Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.142 2003/09/16 13:49:24 cl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.143 2003/09/23 14:34:39 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_ktrace.h"
@@ -414,7 +414,7 @@
#endif
"preadv", /* 289 = preadv */
"pwritev", /* 290 = pwritev */
- "__sigaction14", /* 291 = __sigaction14 */
+ "compat_16___sigaction14", /* 291 = compat_16 __sigaction14 */
"__sigpending14", /* 292 = __sigpending14 */
"__sigprocmask14", /* 293 = __sigprocmask14 */
"__sigsuspend14", /* 294 = __sigsuspend14 */
diff -r aaebb95e0834 -r ecd598f96aaa sys/sys/syscall.h
--- a/sys/sys/syscall.h Tue Sep 23 14:34:07 2003 +0000
+++ b/sys/sys/syscall.h Tue Sep 23 14:34:38 2003 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscall.h,v 1.140 2003/09/16 13:49:25 cl Exp $ */
+/* $NetBSD: syscall.h,v 1.141 2003/09/23 14:34:39 christos Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.130 2003/09/16 13:46:25 cl Exp
+ * created from NetBSD: syscalls.master,v 1.131 2003/09/23 14:34:07 christos Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -832,8 +832,8 @@
/* syscall: "pwritev" ret: "ssize_t" args: "int" "const struct iovec *" "int" "int" "off_t" */
#define SYS_pwritev 290
-/* syscall: "__sigaction14" ret: "int" args: "int" "const struct sigaction *" "struct sigaction *" */
-#define SYS___sigaction14 291
+/* syscall: "compat_16___sigaction14" ret: "int" args: "int" "const struct sigaction *" "struct sigaction *" */
+#define SYS_compat_16___sigaction14 291
/* syscall: "__sigpending14" ret: "int" args: "sigset_t *" */
#define SYS___sigpending14 292
diff -r aaebb95e0834 -r ecd598f96aaa sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h Tue Sep 23 14:34:07 2003 +0000
+++ b/sys/sys/syscallargs.h Tue Sep 23 14:34:38 2003 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscallargs.h,v 1.122 2003/09/16 13:49:25 cl Exp $ */
+/* $NetBSD: syscallargs.h,v 1.123 2003/09/23 14:34:39 christos Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.130 2003/09/16 13:46:25 cl Exp
+ * created from NetBSD: syscalls.master,v 1.131 2003/09/23 14:34:07 christos Exp
*/
#ifndef _SYS__SYSCALLARGS_H_
@@ -1264,7 +1264,7 @@
syscallarg(off_t) offset;
};
-struct sys___sigaction14_args {
+struct compat_16_sys___sigaction14_args {
syscallarg(int) signum;
syscallarg(const struct sigaction *) nsa;
syscallarg(struct sigaction *) osa;
@@ -1755,7 +1755,7 @@
#endif
int sys_preadv(struct lwp *, void *, register_t *);
int sys_pwritev(struct lwp *, void *, register_t *);
-int sys___sigaction14(struct lwp *, void *, register_t *);
+int compat_16_sys___sigaction14(struct lwp *, void *, register_t *);
int sys___sigpending14(struct lwp *, void *, register_t *);
int sys___sigprocmask14(struct lwp *, void *, register_t *);
int sys___sigsuspend14(struct lwp *, void *, register_t *);
Home |
Main Index |
Thread Index |
Old Index