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/arm26/sys Pull up rev. 1.2 (approved by t...



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

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

diffstat:

 lib/libc/arch/arm26/sys/pipe.S |  8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diffs (22 lines):

diff -r df6c8bdc8e7a -r 01bc5e0cd322 lib/libc/arch/arm26/sys/pipe.S
--- a/lib/libc/arch/arm26/sys/pipe.S    Fri Sep 29 09:04:13 2000 +0000
+++ b/lib/libc/arch/arm26/sys/pipe.S    Fri Sep 29 09:04:28 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pipe.S,v 1.1 2000/05/09 21:55:51 bjh21 Exp $   */
+/*     $NetBSD: pipe.S,v 1.1.4.1 2000/09/29 09:04:28 kleink Exp $      */
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -37,7 +37,11 @@
 
 #include "SYS.h"
 
-ENTRY(pipe)
+#ifdef WEAK_ALIAS
+WEAK_ALIAS(pipe, _pipe)
+#endif
+
+ENTRY(_pipe)
        mov     r2, r0
        swi     SYS_pipe
        bcs     cerror



Home | Main Index | Thread Index | Old Index