Source-Changes-HG archive

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

[src/trunk]: src/sys/compat/osf1 regen



details:   https://anonhg.NetBSD.org/src/rev/c4828074a9ad
branches:  trunk
changeset: 472856:c4828074a9ad
user:      cgd <cgd%NetBSD.org@localhost>
date:      Mon May 10 03:34:20 1999 +0000

description:
regen

diffstat:

 sys/compat/osf1/osf1_syscall.h     |  7 +++++--
 sys/compat/osf1/osf1_syscallargs.h |  5 +++--
 sys/compat/osf1/osf1_syscalls.c    |  6 +++---
 sys/compat/osf1/osf1_sysent.c      |  8 ++++----
 4 files changed, 15 insertions(+), 11 deletions(-)

diffs (102 lines):

diff -r 641c6181f485 -r c4828074a9ad sys/compat/osf1/osf1_syscall.h
--- a/sys/compat/osf1/osf1_syscall.h    Mon May 10 03:33:04 1999 +0000
+++ b/sys/compat/osf1/osf1_syscall.h    Mon May 10 03:34:20 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: osf1_syscall.h,v 1.34 1999/05/10 03:00:27 cgd Exp $    */
+/*     $NetBSD: osf1_syscall.h,v 1.35 1999/05/10 03:34:20 cgd Exp $    */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.28 1999/05/10 02:54:57 cgd Exp 
+ * created from        NetBSD: syscalls.master,v 1.29 1999/05/10 03:33:04 cgd Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: */
@@ -215,6 +215,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 641c6181f485 -r c4828074a9ad sys/compat/osf1/osf1_syscallargs.h
--- a/sys/compat/osf1/osf1_syscallargs.h        Mon May 10 03:33:04 1999 +0000
+++ b/sys/compat/osf1/osf1_syscallargs.h        Mon May 10 03:34:20 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: osf1_syscallargs.h,v 1.34 1999/05/10 03:00:27 cgd Exp $        */
+/*     $NetBSD: osf1_syscallargs.h,v 1.35 1999/05/10 03:34:20 cgd Exp $        */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.28 1999/05/10 02:54:57 cgd Exp 
+ * created from        NetBSD: syscalls.master,v 1.29 1999/05/10 03:33:04 cgd Exp 
  */
 
 #ifndef _OSF1_SYS__SYSCALLARGS_H_
@@ -393,6 +393,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 641c6181f485 -r c4828074a9ad sys/compat/osf1/osf1_syscalls.c
--- a/sys/compat/osf1/osf1_syscalls.c   Mon May 10 03:33:04 1999 +0000
+++ b/sys/compat/osf1/osf1_syscalls.c   Mon May 10 03:34:20 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: osf1_syscalls.c,v 1.32 1999/05/10 03:00:28 cgd Exp $   */
+/*     $NetBSD: osf1_syscalls.c,v 1.33 1999/05/10 03:34:20 cgd Exp $   */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.28 1999/05/10 02:54:57 cgd Exp 
+ * created from        NetBSD: syscalls.master,v 1.29 1999/05/10 03:33:04 cgd Exp 
  */
 
 #if defined(_KERNEL) && !defined(_LKM)
@@ -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 641c6181f485 -r c4828074a9ad sys/compat/osf1/osf1_sysent.c
--- a/sys/compat/osf1/osf1_sysent.c     Mon May 10 03:33:04 1999 +0000
+++ b/sys/compat/osf1/osf1_sysent.c     Mon May 10 03:34:20 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: osf1_sysent.c,v 1.34 1999/05/10 03:00:28 cgd Exp $     */
+/*     $NetBSD: osf1_sysent.c,v 1.35 1999/05/10 03:34:20 cgd Exp $     */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.28 1999/05/10 02:54:57 cgd Exp 
+ * created from        NetBSD: syscalls.master,v 1.29 1999/05/10 03:33:04 cgd Exp 
  */
 
 #include "opt_compat_43.h"
@@ -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