Source-Changes-HG archive

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

[src/trunk]: src/sys/compat/svr4 Export bits needed by COMPAT_SVR4_32.



details:   https://anonhg.NetBSD.org/src/rev/2354112be00b
branches:  trunk
changeset: 503645:2354112be00b
user:      eeh <eeh%NetBSD.org@localhost>
date:      Sun Feb 11 01:16:42 2001 +0000

description:
Export bits needed by COMPAT_SVR4_32.

diffstat:

 sys/compat/svr4/files.svr4 |   4 ++--
 sys/compat/svr4/svr4_net.c |  10 +++++-----
 2 files changed, 7 insertions(+), 7 deletions(-)

diffs (56 lines):

diff -r 2e7c0294c3ef -r 2354112be00b sys/compat/svr4/files.svr4
--- a/sys/compat/svr4/files.svr4        Sun Feb 11 01:14:25 2001 +0000
+++ b/sys/compat/svr4/files.svr4        Sun Feb 11 01:16:42 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: files.svr4,v 1.12 2000/12/01 19:26:26 jdolecek Exp $
+#      $NetBSD: files.svr4,v 1.13 2001/02/11 01:16:42 eeh Exp $
 #
 # Config file description for machine-independent SVR4 compat code.
 # Included by ports that need it.
@@ -6,7 +6,7 @@
 # ports should define any machine-specific files they need in their
 # own file lists.
 
-file   compat/svr4/svr4_errno.c        compat_svr4
+file   compat/svr4/svr4_errno.c        compat_svr4 | compat_svr4_32
 file   compat/svr4/svr4_exec.c         compat_svr4
 file   compat/svr4/svr4_exec_elf32.c   compat_svr4 & exec_elf32
 file   compat/svr4/svr4_fcntl.c        compat_svr4
diff -r 2e7c0294c3ef -r 2354112be00b sys/compat/svr4/svr4_net.c
--- a/sys/compat/svr4/svr4_net.c        Sun Feb 11 01:14:25 2001 +0000
+++ b/sys/compat/svr4/svr4_net.c        Sun Feb 11 01:16:42 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: svr4_net.c,v 1.23 2000/09/11 15:12:40 ad Exp $  */
+/*     $NetBSD: svr4_net.c,v 1.24 2001/02/11 01:16:42 eeh Exp $         */
 
 /*-
  * Copyright (c) 1994 The NetBSD Foundation, Inc.
@@ -95,8 +95,8 @@
 
 int svr4_netattach __P((int));
 
-static int svr4_soo_close __P((struct file *, struct proc *));
-static int svr4_ptm_alloc __P((struct proc *));
+int svr4_soo_close __P((struct file *, struct proc *));
+int svr4_ptm_alloc __P((struct proc *));
 
 static struct fileops svr4_netops = {
        soo_read, soo_write, soo_ioctl, soo_fcntl, soo_poll, svr4_soo_close
@@ -214,7 +214,7 @@
 }
 
 
-static int
+int
 svr4_soo_close(fp, p)
        struct file *fp;
        struct proc *p;
@@ -227,7 +227,7 @@
 }
 
 
-static int
+int
 svr4_ptm_alloc(p)
        struct proc *p;
 {



Home | Main Index | Thread Index | Old Index