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 revs. 1.7-1.8 (approved...



details:   https://anonhg.NetBSD.org/src/rev/1d69b86f130e
branches:  netbsd-1-5
changeset: 489146:1d69b86f130e
user:      kleink <kleink%NetBSD.org@localhost>
date:      Mon Aug 21 17:35:01 2000 +0000

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

diffstat:

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

diffs (27 lines):

diff -r 596d2f0e9b1a -r 1d69b86f130e lib/libc/arch/alpha/sys/brk.S
--- a/lib/libc/arch/alpha/sys/brk.S     Mon Aug 21 15:02:49 2000 +0000
+++ b/lib/libc/arch/alpha/sys/brk.S     Mon Aug 21 17:35:01 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: brk.S,v 1.6 2000/06/14 06:49:03 cgd Exp $ */
+/* $NetBSD: brk.S,v 1.6.2.1 2000/08/21 17:35:01 kleink Exp $ */
 
 /*
  * Copyright (c) 1994, 1995 Carnegie-Mellon University.
@@ -32,12 +32,16 @@
        .globl  _end
 IMPORT(__curbrk, 8)
 
+#ifdef WEAK_ALIAS
+WEAK_ALIAS(brk, _brk)
+#endif
+
        .data
 EXPORT(__minbrk)
        .quad   _end
 
        .text
-LEAF(brk, 1)
+LEAF(_brk, 1)
        br      pv, L1                          /* XXX profiling */
 L1:    LDGP(pv)
        ldq     v0, __minbrk



Home | Main Index | Thread Index | Old Index