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/powerpc/sys Pull up revs. 1.8-1.9 (approv...



details:   https://anonhg.NetBSD.org/src/rev/a35cd6fe8d84
branches:  netbsd-1-5
changeset: 489179:a35cd6fe8d84
user:      kleink <kleink%NetBSD.org@localhost>
date:      Tue Aug 22 07:16:25 2000 +0000

description:
Pull up revs. 1.8-1.9 (approved by thorpej):
Add internal names for brk(), sbrk() and fork().

diffstat:

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

diffs (28 lines):

diff -r 3621bda74aa3 -r a35cd6fe8d84 lib/libc/arch/powerpc/sys/brk.S
--- a/lib/libc/arch/powerpc/sys/brk.S   Tue Aug 22 07:15:17 2000 +0000
+++ b/lib/libc/arch/powerpc/sys/brk.S   Tue Aug 22 07:16:25 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: brk.S,v 1.7 2000/02/24 15:37:34 kleink Exp $   */
+/*     $NetBSD: brk.S,v 1.7.4.1 2000/08/22 07:16:25 kleink Exp $       */
 
 #include "SYS.h"
 
@@ -6,13 +6,17 @@
        .globl  _C_LABEL(__minbrk)
        .globl  _C_LABEL(_end)
 
+#ifdef WEAK_ALIAS
+WEAK_ALIAS(brk, _brk)
+#endif
+
        .data
 _C_LABEL(__minbrk):
        .long   _C_LABEL(_end)          # XXX not used yet
 
        .text
 
-ENTRY(brk)
+ENTRY(_brk)
 #ifdef PIC
        mflr    10
        bl      _GLOBAL_OFFSET_TABLE_@local-4



Home | Main Index | Thread Index | Old Index