Source-Changes-HG archive

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

[src/netbsd-1-5]: src/lib/libc/arch/alpha/sys Pull up rev. 1.3 (approved by t...



details:   https://anonhg.NetBSD.org/src/rev/df6c8bdc8e7a
branches:  netbsd-1-5
changeset: 489580:df6c8bdc8e7a
user:      kleink <kleink%NetBSD.org@localhost>
date:      Fri Sep 29 09:04:13 2000 +0000

description:
Pull up rev. 1.3 (approved by thorpej):
Add internal name for pipe().

diffstat:

 lib/libc/arch/alpha/sys/pipe.S |  9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diffs (23 lines):

diff -r 40418ae5ff67 -r df6c8bdc8e7a lib/libc/arch/alpha/sys/pipe.S
--- a/lib/libc/arch/alpha/sys/pipe.S    Fri Sep 29 07:50:07 2000 +0000
+++ b/lib/libc/arch/alpha/sys/pipe.S    Fri Sep 29 09:04:13 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pipe.S,v 1.2 2000/06/14 06:49:03 cgd Exp $ */
+/* $NetBSD: pipe.S,v 1.2.2.1 2000/09/29 09:04:13 kleink Exp $ */
 
 /*
  * Copyright (c) 1994, 1995 Carnegie-Mellon University.
@@ -29,7 +29,12 @@
 
 #include "SYS.h"
 
-SYSCALL(pipe)
+#ifdef WEAK_ALIAS
+WEAK_ALIAS(pipe, _pipe)
+#endif
+
+LEAF(_pipe, 0)
+       CALLSYS_ERROR(pipe)
        stl     v0, 0(a0)
        stl     a4, 4(a0)
        mov     zero, v0



Home | Main Index | Thread Index | Old Index