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/86fbcb2ccabd
branches:  trunk
changeset: 472854:86fbcb2ccabd
user:      cgd <cgd%NetBSD.org@localhost>
date:      Mon May 10 03:00:27 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 869a9535a762 -r 86fbcb2ccabd sys/compat/osf1/osf1_syscall.h
--- a/sys/compat/osf1/osf1_syscall.h    Mon May 10 02:55:57 1999 +0000
+++ b/sys/compat/osf1/osf1_syscall.h    Mon May 10 03:00:27 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: osf1_syscall.h,v 1.33 1999/05/10 01:59:41 cgd Exp $    */
+/*     $NetBSD: osf1_syscall.h,v 1.34 1999/05/10 03:00:27 cgd Exp $    */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.27 1999/05/10 01:58:37 cgd Exp 
+ * created from        NetBSD: syscalls.master,v 1.28 1999/05/10 02:54:57 cgd Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: */
@@ -233,6 +233,9 @@
 /* syscall: "setsockopt" ret: "int" args: "int" "int" "int" "caddr_t" "int" */
 #define        OSF1_SYS_setsockopt     105
 
+/* syscall: "listen" ret: "int" args: "int" "int" */
+#define        OSF1_SYS_listen 106
+
 /* syscall: "sigsuspend" ret: "int" args: "int" */
 #define        OSF1_SYS_sigsuspend     111
 
diff -r 869a9535a762 -r 86fbcb2ccabd sys/compat/osf1/osf1_syscallargs.h
--- a/sys/compat/osf1/osf1_syscallargs.h        Mon May 10 02:55:57 1999 +0000
+++ b/sys/compat/osf1/osf1_syscallargs.h        Mon May 10 03:00:27 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: osf1_syscallargs.h,v 1.33 1999/05/10 01:59:41 cgd Exp $        */
+/*     $NetBSD: osf1_syscallargs.h,v 1.34 1999/05/10 03:00:27 cgd Exp $        */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.27 1999/05/10 01:58:37 cgd Exp 
+ * created from        NetBSD: syscalls.master,v 1.28 1999/05/10 02:54:57 cgd Exp 
  */
 
 #ifndef _OSF1_SYS__SYSCALLARGS_H_
@@ -399,6 +399,7 @@
 int    compat_13_sys_sigreturn __P((struct proc *, void *, register_t *));
 int    sys_bind        __P((struct proc *, void *, register_t *));
 int    sys_setsockopt  __P((struct proc *, void *, register_t *));
+int    sys_listen      __P((struct proc *, void *, register_t *));
 int    compat_13_sys_sigsuspend        __P((struct proc *, void *, register_t *));
 int    compat_43_sys_sigstack  __P((struct proc *, void *, register_t *));
 int    osf1_sys_gettimeofday   __P((struct proc *, void *, register_t *));
diff -r 869a9535a762 -r 86fbcb2ccabd sys/compat/osf1/osf1_syscalls.c
--- a/sys/compat/osf1/osf1_syscalls.c   Mon May 10 02:55:57 1999 +0000
+++ b/sys/compat/osf1/osf1_syscalls.c   Mon May 10 03:00:27 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: osf1_syscalls.c,v 1.31 1999/05/10 01:59:41 cgd Exp $   */
+/*     $NetBSD: osf1_syscalls.c,v 1.32 1999/05/10 03:00:28 cgd Exp $   */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.27 1999/05/10 01:58:37 cgd Exp 
+ * created from        NetBSD: syscalls.master,v 1.28 1999/05/10 02:54:57 cgd Exp 
  */
 
 #if defined(_KERNEL) && !defined(_LKM)
@@ -126,7 +126,7 @@
        "sigreturn",                    /* 103 = sigreturn */
        "bind",                 /* 104 = bind */
        "setsockopt",                   /* 105 = setsockopt */
-       "#106 (unimplemented listen)",          /* 106 = unimplemented listen */
+       "listen",                       /* 106 = listen */
        "#107 (unimplemented plock)",           /* 107 = unimplemented plock */
        "#108 (unimplemented old sigvec)",              /* 108 = unimplemented old sigvec */
        "#109 (unimplemented old sigblock)",            /* 109 = unimplemented old sigblock */
diff -r 869a9535a762 -r 86fbcb2ccabd sys/compat/osf1/osf1_sysent.c
--- a/sys/compat/osf1/osf1_sysent.c     Mon May 10 02:55:57 1999 +0000
+++ b/sys/compat/osf1/osf1_sysent.c     Mon May 10 03:00:27 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: osf1_sysent.c,v 1.33 1999/05/10 01:59:42 cgd Exp $     */
+/*     $NetBSD: osf1_sysent.c,v 1.34 1999/05/10 03:00:28 cgd Exp $     */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.27 1999/05/10 01:58:37 cgd Exp 
+ * created from        NetBSD: syscalls.master,v 1.28 1999/05/10 02:54:57 cgd Exp 
  */
 
 #include "opt_compat_43.h"
@@ -232,8 +232,8 @@
            sys_bind },                         /* 104 = bind */
        { 5, s(struct sys_setsockopt_args),
            sys_setsockopt },                   /* 105 = setsockopt */
-       { 0, 0,
-           sys_nosys },                        /* 106 = unimplemented listen */
+       { 2, s(struct sys_listen_args),
+           sys_listen },                       /* 106 = listen */
        { 0, 0,
            sys_nosys },                        /* 107 = unimplemented plock */
        { 0, 0,



Home | Main Index | Thread Index | Old Index