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/vax/sys Pull up revs. 1.4-1.5 (approved b...



details:   https://anonhg.NetBSD.org/src/rev/53c547e535ee
branches:  netbsd-1-5
changeset: 489194:53c547e535ee
user:      kleink <kleink%NetBSD.org@localhost>
date:      Tue Aug 22 07:37:50 2000 +0000

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

diffstat:

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

diffs (31 lines):

diff -r f6724ce1ae0b -r 53c547e535ee lib/libc/arch/vax/sys/sbrk.S
--- a/lib/libc/arch/vax/sys/sbrk.S      Tue Aug 22 07:36:44 2000 +0000
+++ b/lib/libc/arch/vax/sys/sbrk.S      Tue Aug 22 07:37:50 2000 +0000
@@ -33,7 +33,7 @@
 
 #if defined(SYSLIBC_SCCS) && !defined(lint)
        /* .asciz "@(#)sbrk.s   8.1 (Berkeley) 6/4/93" */
-       .asciz "$NetBSD: sbrk.S,v 1.3 1999/01/14 22:48:22 kleink Exp $"
+       .asciz "$NetBSD: sbrk.S,v 1.3.10.1 2000/08/22 07:37:50 kleink Exp $"
 #endif /* SYSLIBC_SCCS and not lint */
 
 #include "SYS.h"
@@ -43,13 +43,17 @@
        .globl  ___minbrk
        .globl  curbrk
 
+#ifdef WEAK_ALIAS
+WEAK_ALIAS(sbrk, _sbrk)
+#endif
+
        .data
 ___minbrk:
        .long   _end
 curbrk:        .long   _end
        .text
 
-ENTRY(sbrk, 0)
+ENTRY(_sbrk, 0)
        addl3   curbrk,4(ap),-(sp)
        pushl   $1
        movl    ap,r3



Home | Main Index | Thread Index | Old Index