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/mips/sys Pull up revs. 1.11-1.12 (approve...



details:   https://anonhg.NetBSD.org/src/rev/5dbff4542ada
branches:  netbsd-1-5
changeset: 489175:5dbff4542ada
user:      kleink <kleink%NetBSD.org@localhost>
date:      Tue Aug 22 07:13:30 2000 +0000

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

diffstat:

 lib/libc/arch/mips/sys/sbrk.S |  10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diffs (36 lines):

diff -r b578c1584ba5 -r 5dbff4542ada lib/libc/arch/mips/sys/sbrk.S
--- a/lib/libc/arch/mips/sys/sbrk.S     Tue Aug 22 07:12:42 2000 +0000
+++ b/lib/libc/arch/mips/sys/sbrk.S     Tue Aug 22 07:13:30 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sbrk.S,v 1.10 1999/03/31 11:53:07 kleink Exp $ */
+/*     $NetBSD: sbrk.S,v 1.10.10.1 2000/08/22 07:13:30 kleink Exp $    */
 
 /*-
  * Copyright (c) 1991, 1993
@@ -40,7 +40,7 @@
 
 #if defined(LIBC_SCCS) && !defined(lint)
        ASMSTR("from: @(#)sbrk.s        8.1 (Berkeley) 6/4/93")
-       ASMSTR("$NetBSD: sbrk.S,v 1.10 1999/03/31 11:53:07 kleink Exp $")
+       ASMSTR("$NetBSD: sbrk.S,v 1.10.10.1 2000/08/22 07:13:30 kleink Exp $")
 #endif /* LIBC_SCCS and not lint */
 
 #ifdef ABICALLS
@@ -50,12 +50,16 @@
        .globl  _C_LABEL(__curbrk)
        .globl  _C_LABEL(_end)
 
+#ifdef WEAK_ALIAS
+WEAK_ALIAS(sbrk, _sbrk)
+#endif
+
        .data
 _C_LABEL(__curbrk):
        .word   _C_LABEL(_end)
        .text
 
-LEAF(sbrk)
+LEAF(_sbrk)
 #ifdef ABICALLS
        .set    noreorder
        .cpload t9



Home | Main Index | Thread Index | Old Index