Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/netbsd32 Regen.
details: https://anonhg.NetBSD.org/src/rev/eeb2b2cc782e
branches: trunk
changeset: 582861:eeb2b2cc782e
user: cube <cube%NetBSD.org@localhost>
date: Sat Jul 09 22:40:34 2005 +0000
description:
Regen.
diffstat:
sys/compat/netbsd32/netbsd32_syscall.h | 12 +++++++++---
sys/compat/netbsd32/netbsd32_syscallargs.h | 24 ++++++++++++++++++++++--
sys/compat/netbsd32/netbsd32_syscalls.c | 8 +++++---
sys/compat/netbsd32/netbsd32_sysent.c | 14 +++++++-------
4 files changed, 43 insertions(+), 15 deletions(-)
diffs (141 lines):
diff -r 092a6a71e104 -r eeb2b2cc782e sys/compat/netbsd32/netbsd32_syscall.h
--- a/sys/compat/netbsd32/netbsd32_syscall.h Sat Jul 09 22:40:13 2005 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscall.h Sat Jul 09 22:40:34 2005 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: netbsd32_syscall.h,v 1.37 2005/07/08 22:22:19 cube Exp $ */
+/* $NetBSD: netbsd32_syscall.h,v 1.38 2005/07/09 22:40:34 cube Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.30 2005/07/08 22:21:43 cube Exp
+ * created from NetBSD: syscalls.master,v 1.31 2005/07/09 22:40:13 cube Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -890,5 +890,11 @@
/* syscall: "netbsd32_extattr_list_link" ret: "int" args: "const netbsd32_charp" "int" "netbsd32_voidp" "netbsd32_size_t" */
#define netbsd32_SYS_netbsd32_extattr_list_link 372
-#define netbsd32_SYS_MAXSYSCALL 373
+/* syscall: "netbsd32_pselect" ret: "int" args: "int" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "const netbsd32_timespecp_t" "const netbsd32_sigsetp_t" */
+#define netbsd32_SYS_netbsd32_pselect 373
+
+/* syscall: "netbsd32_pollts" ret: "int" args: "netbsd32_pollfdp_t" "u_int" "const netbsd32_timespecp_t" "const netbsd32_sigsetp_t" */
+#define netbsd32_SYS_netbsd32_pollts 374
+
+#define netbsd32_SYS_MAXSYSCALL 375
#define netbsd32_SYS_NSYSENT 512
diff -r 092a6a71e104 -r eeb2b2cc782e sys/compat/netbsd32/netbsd32_syscallargs.h
--- a/sys/compat/netbsd32/netbsd32_syscallargs.h Sat Jul 09 22:40:13 2005 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscallargs.h Sat Jul 09 22:40:34 2005 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: netbsd32_syscallargs.h,v 1.37 2005/07/08 22:22:19 cube Exp $ */
+/* $NetBSD: netbsd32_syscallargs.h,v 1.38 2005/07/09 22:40:34 cube Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.30 2005/07/08 22:21:43 cube Exp
+ * created from NetBSD: syscalls.master,v 1.31 2005/07/09 22:40:13 cube Exp
*/
#ifndef _netbsd32_SYS__SYSCALLARGS_H_
@@ -1411,6 +1411,22 @@
syscallarg(netbsd32_size_t) nbytes;
};
+struct netbsd32_pselect_args {
+ syscallarg(int) nd;
+ syscallarg(netbsd32_fd_setp_t) in;
+ syscallarg(netbsd32_fd_setp_t) ou;
+ syscallarg(netbsd32_fd_setp_t) ex;
+ syscallarg(const netbsd32_timespecp_t) ts;
+ syscallarg(const netbsd32_sigsetp_t) mask;
+};
+
+struct netbsd32_pollts_args {
+ syscallarg(netbsd32_pollfdp_t) fds;
+ syscallarg(u_int) nfds;
+ syscallarg(const netbsd32_timespecp_t) ts;
+ syscallarg(const netbsd32_sigsetp_t) mask;
+};
+
/*
* System call prototypes.
*/
@@ -1987,4 +2003,8 @@
int netbsd32_extattr_list_link(struct lwp *, void *, register_t *);
+int netbsd32_pselect(struct lwp *, void *, register_t *);
+
+int netbsd32_pollts(struct lwp *, void *, register_t *);
+
#endif /* _netbsd32_SYS__SYSCALLARGS_H_ */
diff -r 092a6a71e104 -r eeb2b2cc782e sys/compat/netbsd32/netbsd32_syscalls.c
--- a/sys/compat/netbsd32/netbsd32_syscalls.c Sat Jul 09 22:40:13 2005 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscalls.c Sat Jul 09 22:40:34 2005 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: netbsd32_syscalls.c,v 1.37 2005/07/08 22:22:19 cube Exp $ */
+/* $NetBSD: netbsd32_syscalls.c,v 1.38 2005/07/09 22:40:34 cube Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.30 2005/07/08 22:21:43 cube Exp
+ * created from NetBSD: syscalls.master,v 1.31 2005/07/09 22:40:13 cube Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.37 2005/07/08 22:22:19 cube Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.38 2005/07/09 22:40:34 cube Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)
@@ -499,4 +499,6 @@
"netbsd32_extattr_list_fd", /* 370 = netbsd32_extattr_list_fd */
"netbsd32_extattr_list_file", /* 371 = netbsd32_extattr_list_file */
"netbsd32_extattr_list_link", /* 372 = netbsd32_extattr_list_link */
+ "netbsd32_pselect", /* 373 = netbsd32_pselect */
+ "netbsd32_pollts", /* 374 = netbsd32_pollts */
};
diff -r 092a6a71e104 -r eeb2b2cc782e sys/compat/netbsd32/netbsd32_sysent.c
--- a/sys/compat/netbsd32/netbsd32_sysent.c Sat Jul 09 22:40:13 2005 +0000
+++ b/sys/compat/netbsd32/netbsd32_sysent.c Sat Jul 09 22:40:34 2005 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: netbsd32_sysent.c,v 1.37 2005/07/08 22:22:19 cube Exp $ */
+/* $NetBSD: netbsd32_sysent.c,v 1.38 2005/07/09 22:40:34 cube Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.30 2005/07/08 22:21:43 cube Exp
+ * created from NetBSD: syscalls.master,v 1.31 2005/07/09 22:40:13 cube Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.37 2005/07/08 22:22:19 cube Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.38 2005/07/09 22:40:34 cube Exp $");
#if defined(_KERNEL_OPT)
#include "opt_ktrace.h"
@@ -972,10 +972,10 @@
netbsd32_extattr_list_file }, /* 371 = netbsd32_extattr_list_file */
{ 4, s(struct netbsd32_extattr_list_link_args), 0,
netbsd32_extattr_list_link }, /* 372 = netbsd32_extattr_list_link */
- { 0, 0, 0,
- sys_nosys }, /* 373 = filler */
- { 0, 0, 0,
- sys_nosys }, /* 374 = filler */
+ { 6, s(struct netbsd32_pselect_args), 0,
+ netbsd32_pselect }, /* 373 = netbsd32_pselect */
+ { 4, s(struct netbsd32_pollts_args), 0,
+ netbsd32_pollts }, /* 374 = netbsd32_pollts */
{ 0, 0, 0,
sys_nosys }, /* 375 = filler */
{ 0, 0, 0,
Home |
Main Index |
Thread Index |
Old Index