Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/sunos32 regen
details: https://anonhg.NetBSD.org/src/rev/8012e304a906
branches: trunk
changeset: 503453:8012e304a906
user: mrg <mrg%NetBSD.org@localhost>
date: Tue Feb 06 15:42:34 2001 +0000
description:
regen
diffstat:
sys/compat/sunos32/sunos32_syscall.h | 8 ++++----
sys/compat/sunos32/sunos32_syscallargs.h | 6 +++---
sys/compat/sunos32/sunos32_syscalls.c | 6 +++---
sys/compat/sunos32/sunos32_sysent.c | 8 ++++----
4 files changed, 14 insertions(+), 14 deletions(-)
diffs (104 lines):
diff -r c755313edaf5 -r 8012e304a906 sys/compat/sunos32/sunos32_syscall.h
--- a/sys/compat/sunos32/sunos32_syscall.h Tue Feb 06 15:41:53 2001 +0000
+++ b/sys/compat/sunos32/sunos32_syscall.h Tue Feb 06 15:42:34 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: sunos32_syscall.h,v 1.3 2001/02/05 12:48:33 mrg Exp $ */
+/* $NetBSD: sunos32_syscall.h,v 1.4 2001/02/06 15:42:34 mrg Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; NetBSD: syscalls.master,v 1.3 2001/02/05 12:46:19 mrg Exp
+ * created from; NetBSD: syscalls.master,v 1.4 2001/02/06 15:41:53 mrg Exp
*/
/* syscall: "syscall" ret: "int" args: */
@@ -214,8 +214,8 @@
/* syscall: "fcntl" ret: "int" args: "int" "int" "netbsd32_voidp" */
#define SUNOS32_SYS_fcntl 92
-/* syscall: "select" ret: "int" args: "u_int" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_timevalp_t" */
-#define SUNOS32_SYS_select 93
+/* syscall: "netbsd32_select" ret: "int" args: "u_int" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_timevalp_t" */
+#define SUNOS32_SYS_netbsd32_select 93
/* syscall: "netbsd32_fsync" ret: "int" args: "int" */
#define SUNOS32_SYS_netbsd32_fsync 95
diff -r c755313edaf5 -r 8012e304a906 sys/compat/sunos32/sunos32_syscallargs.h
--- a/sys/compat/sunos32/sunos32_syscallargs.h Tue Feb 06 15:41:53 2001 +0000
+++ b/sys/compat/sunos32/sunos32_syscallargs.h Tue Feb 06 15:42:34 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: sunos32_syscallargs.h,v 1.3 2001/02/05 12:48:34 mrg Exp $ */
+/* $NetBSD: sunos32_syscallargs.h,v 1.4 2001/02/06 15:42:34 mrg Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; NetBSD: syscalls.master,v 1.3 2001/02/05 12:46:19 mrg Exp
+ * created from; NetBSD: syscalls.master,v 1.4 2001/02/06 15:41:53 mrg Exp
*/
#ifndef _SUNOS32_SYS__SYSCALLARGS_H_
@@ -299,7 +299,7 @@
int compat_43_sys_getdtablesize(struct proc *, void *, register_t *);
int netbsd32_dup2(struct proc *, void *, register_t *);
int sunos32_sys_fcntl(struct proc *, void *, register_t *);
-int sys_select(struct proc *, void *, register_t *);
+int netbsd32_select(struct proc *, void *, register_t *);
int netbsd32_fsync(struct proc *, void *, register_t *);
int netbsd32_setpriority(struct proc *, void *, register_t *);
int netbsd32_socket(struct proc *, void *, register_t *);
diff -r c755313edaf5 -r 8012e304a906 sys/compat/sunos32/sunos32_syscalls.c
--- a/sys/compat/sunos32/sunos32_syscalls.c Tue Feb 06 15:41:53 2001 +0000
+++ b/sys/compat/sunos32/sunos32_syscalls.c Tue Feb 06 15:42:34 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: sunos32_syscalls.c,v 1.3 2001/02/05 12:48:34 mrg Exp $ */
+/* $NetBSD: sunos32_syscalls.c,v 1.4 2001/02/06 15:42:34 mrg Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; NetBSD: syscalls.master,v 1.3 2001/02/05 12:46:19 mrg Exp
+ * created from; NetBSD: syscalls.master,v 1.4 2001/02/06 15:41:53 mrg Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
@@ -121,7 +121,7 @@
"netbsd32_dup2", /* 90 = netbsd32_dup2 */
"#91 (unimplemented getdopt)", /* 91 = unimplemented getdopt */
"fcntl", /* 92 = fcntl */
- "select", /* 93 = select */
+ "netbsd32_select", /* 93 = netbsd32_select */
"#94 (unimplemented setdopt)", /* 94 = unimplemented setdopt */
"netbsd32_fsync", /* 95 = netbsd32_fsync */
"netbsd32_setpriority", /* 96 = netbsd32_setpriority */
diff -r c755313edaf5 -r 8012e304a906 sys/compat/sunos32/sunos32_sysent.c
--- a/sys/compat/sunos32/sunos32_sysent.c Tue Feb 06 15:41:53 2001 +0000
+++ b/sys/compat/sunos32/sunos32_sysent.c Tue Feb 06 15:42:34 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: sunos32_sysent.c,v 1.3 2001/02/05 12:48:34 mrg Exp $ */
+/* $NetBSD: sunos32_sysent.c,v 1.4 2001/02/06 15:42:34 mrg Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; NetBSD: syscalls.master,v 1.3 2001/02/05 12:46:19 mrg Exp
+ * created from; NetBSD: syscalls.master,v 1.4 2001/02/06 15:41:53 mrg Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
@@ -214,8 +214,8 @@
sys_nosys }, /* 91 = unimplemented getdopt */
{ 3, s(struct sunos32_sys_fcntl_args), 0,
sunos32_sys_fcntl }, /* 92 = fcntl */
- { 5, s(struct sys_select_args), 0,
- sys_select }, /* 93 = select */
+ { 5, s(struct netbsd32_select_args), 0,
+ netbsd32_select }, /* 93 = netbsd32_select */
{ 0, 0, 0,
sys_nosys }, /* 94 = unimplemented setdopt */
{ 1, s(struct netbsd32_fsync_args), 0,
Home |
Main Index |
Thread Index |
Old Index