Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-4]: src/sys/compat/osf1 regenerate for pulled-up syscalls.master.
details: https://anonhg.NetBSD.org/src/rev/9f67a8c236a2
branches: netbsd-1-4
changeset: 469079:9f67a8c236a2
user: cgd <cgd%NetBSD.org@localhost>
date: Sat Jun 26 01:55:18 1999 +0000
description:
regenerate for pulled-up syscalls.master.
diffstat:
sys/compat/osf1/osf1_syscall.h | 13 +++++++++++--
sys/compat/osf1/osf1_syscallargs.h | 19 +++++++++++++++++--
sys/compat/osf1/osf1_syscalls.c | 10 +++++-----
sys/compat/osf1/osf1_sysent.c | 16 ++++++++--------
4 files changed, 41 insertions(+), 17 deletions(-)
diffs (169 lines):
diff -r bf1dfe1a0700 -r 9f67a8c236a2 sys/compat/osf1/osf1_syscall.h
--- a/sys/compat/osf1/osf1_syscall.h Sat Jun 26 01:52:49 1999 +0000
+++ b/sys/compat/osf1/osf1_syscall.h Sat Jun 26 01:55:18 1999 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_syscall.h,v 1.19.2.1 1999/06/21 19:31:49 cgd Exp $ */
+/* $NetBSD: osf1_syscall.h,v 1.19.2.2 1999/06/26 01:55:18 cgd Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.13.2.1 1999/06/21 19:29:19 cgd Exp
+ * created from NetBSD: syscalls.master,v 1.13.2.2 1999/06/26 01:52:49 cgd Exp
*/
/* syscall: "syscall" ret: "int" args: */
@@ -73,6 +73,12 @@
/* syscall: "getuid" ret: "uid_t" args: */
#define OSF1_SYS_getuid 24
+/* syscall: "recvmsg_xopen" ret: "int" args: "int" "struct osf1_msghdr_xopen *" "int" */
+#define OSF1_SYS_recvmsg_xopen 27
+
+/* syscall: "sendmsg_xopen" ret: "int" args: "int" "const struct osf1_msghdr_xopen *" "int" */
+#define OSF1_SYS_sendmsg_xopen 28
+
/* syscall: "access" ret: "int" args: "const char *" "int" */
#define OSF1_SYS_access 33
@@ -215,6 +221,9 @@
/* syscall: "connect" ret: "int" args: "int" "caddr_t" "int" */
#define OSF1_SYS_connect 98
+/* syscall: "accept" ret: "int" args: "int" "caddr_t" "int *" */
+#define OSF1_SYS_accept 99
+
/* syscall: "getpriority" ret: "int" args: "int" "int" */
#define OSF1_SYS_getpriority 100
diff -r bf1dfe1a0700 -r 9f67a8c236a2 sys/compat/osf1/osf1_syscallargs.h
--- a/sys/compat/osf1/osf1_syscallargs.h Sat Jun 26 01:52:49 1999 +0000
+++ b/sys/compat/osf1/osf1_syscallargs.h Sat Jun 26 01:55:18 1999 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_syscallargs.h,v 1.19.2.1 1999/06/21 19:31:49 cgd Exp $ */
+/* $NetBSD: osf1_syscallargs.h,v 1.19.2.2 1999/06/26 01:55:18 cgd Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.13.2.1 1999/06/21 19:29:19 cgd Exp
+ * created from NetBSD: syscalls.master,v 1.13.2.2 1999/06/26 01:52:49 cgd Exp
*/
#ifndef _OSF1_SYS__SYSCALLARGS_H_
@@ -67,6 +67,18 @@
syscallarg(uid_t) uid;
};
+struct osf1_sys_recvmsg_xopen_args {
+ syscallarg(int) s;
+ syscallarg(struct osf1_msghdr_xopen *) msg;
+ syscallarg(int) flags;
+};
+
+struct osf1_sys_sendmsg_xopen_args {
+ syscallarg(int) s;
+ syscallarg(const struct osf1_msghdr_xopen *) msg;
+ syscallarg(int) flags;
+};
+
struct osf1_sys_access_args {
syscallarg(const char *) path;
syscallarg(int) flags;
@@ -346,6 +358,8 @@
int osf1_sys_unmount __P((struct proc *, void *, register_t *));
int osf1_sys_setuid __P((struct proc *, void *, register_t *));
int sys_getuid __P((struct proc *, void *, register_t *));
+int osf1_sys_recvmsg_xopen __P((struct proc *, void *, register_t *));
+int osf1_sys_sendmsg_xopen __P((struct proc *, void *, register_t *));
int osf1_sys_access __P((struct proc *, void *, register_t *));
int sys_sync __P((struct proc *, void *, register_t *));
int sys_kill __P((struct proc *, void *, register_t *));
@@ -393,6 +407,7 @@
int sys_setpriority __P((struct proc *, void *, register_t *));
int osf1_sys_socket __P((struct proc *, void *, register_t *));
int sys_connect __P((struct proc *, void *, register_t *));
+int compat_43_sys_accept __P((struct proc *, void *, register_t *));
int sys_getpriority __P((struct proc *, void *, register_t *));
int compat_43_sys_send __P((struct proc *, void *, register_t *));
int compat_43_sys_recv __P((struct proc *, void *, register_t *));
diff -r bf1dfe1a0700 -r 9f67a8c236a2 sys/compat/osf1/osf1_syscalls.c
--- a/sys/compat/osf1/osf1_syscalls.c Sat Jun 26 01:52:49 1999 +0000
+++ b/sys/compat/osf1/osf1_syscalls.c Sat Jun 26 01:55:18 1999 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_syscalls.c,v 1.17.2.1 1999/06/21 19:31:49 cgd Exp $ */
+/* $NetBSD: osf1_syscalls.c,v 1.17.2.2 1999/06/26 01:55:18 cgd Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.13.2.1 1999/06/21 19:29:19 cgd Exp
+ * created from NetBSD: syscalls.master,v 1.13.2.2 1999/06/26 01:52:49 cgd Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
@@ -47,8 +47,8 @@
"getuid", /* 24 = getuid */
"#25 (unimplemented exec_with_loader)", /* 25 = unimplemented exec_with_loader */
"#26 (unimplemented ptrace)", /* 26 = unimplemented ptrace */
- "#27 (unimplemented recvmsg)", /* 27 = unimplemented recvmsg */
- "#28 (unimplemented sendmsg)", /* 28 = unimplemented sendmsg */
+ "recvmsg_xopen", /* 27 = recvmsg_xopen */
+ "sendmsg_xopen", /* 28 = sendmsg_xopen */
"#29 (unimplemented recvfrom)", /* 29 = unimplemented recvfrom */
"#30 (unimplemented accept)", /* 30 = unimplemented accept */
"#31 (unimplemented getpeername)", /* 31 = unimplemented getpeername */
@@ -119,7 +119,7 @@
"setpriority", /* 96 = setpriority */
"socket", /* 97 = socket */
"connect", /* 98 = connect */
- "#99 (unimplemented old accept)", /* 99 = unimplemented old accept */
+ "accept", /* 99 = accept */
"getpriority", /* 100 = getpriority */
"send", /* 101 = send */
"recv", /* 102 = recv */
diff -r bf1dfe1a0700 -r 9f67a8c236a2 sys/compat/osf1/osf1_sysent.c
--- a/sys/compat/osf1/osf1_sysent.c Sat Jun 26 01:52:49 1999 +0000
+++ b/sys/compat/osf1/osf1_sysent.c Sat Jun 26 01:55:18 1999 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_sysent.c,v 1.19.2.1 1999/06/21 19:31:49 cgd Exp $ */
+/* $NetBSD: osf1_sysent.c,v 1.19.2.2 1999/06/26 01:55:19 cgd Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.13.2.1 1999/06/21 19:29:19 cgd Exp
+ * created from NetBSD: syscalls.master,v 1.13.2.2 1999/06/26 01:52:49 cgd Exp
*/
#include "opt_compat_43.h"
@@ -74,10 +74,10 @@
sys_nosys }, /* 25 = unimplemented exec_with_loader */
{ 0, 0,
sys_nosys }, /* 26 = unimplemented ptrace */
- { 0, 0,
- sys_nosys }, /* 27 = unimplemented recvmsg */
- { 0, 0,
- sys_nosys }, /* 28 = unimplemented sendmsg */
+ { 3, s(struct osf1_sys_recvmsg_xopen_args),
+ osf1_sys_recvmsg_xopen }, /* 27 = recvmsg_xopen */
+ { 3, s(struct osf1_sys_sendmsg_xopen_args),
+ osf1_sys_sendmsg_xopen }, /* 28 = sendmsg_xopen */
{ 0, 0,
sys_nosys }, /* 29 = unimplemented recvfrom */
{ 0, 0,
@@ -218,8 +218,8 @@
osf1_sys_socket }, /* 97 = socket */
{ 3, s(struct sys_connect_args),
sys_connect }, /* 98 = connect */
- { 0, 0,
- sys_nosys }, /* 99 = unimplemented old accept */
+ { 3, s(struct compat_43_sys_accept_args),
+ compat_43_sys_accept }, /* 99 = accept */
{ 2, s(struct sys_getpriority_args),
sys_getpriority }, /* 100 = getpriority */
{ 4, s(struct compat_43_sys_send_args),
Home |
Main Index |
Thread Index |
Old Index