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/i386/sys Pull up revs. 1.15-1.16 (approve...
details: https://anonhg.NetBSD.org/src/rev/048fc3b4e51e
branches: netbsd-1-5
changeset: 489155:048fc3b4e51e
user: kleink <kleink%NetBSD.org@localhost>
date: Mon Aug 21 17:42:03 2000 +0000
description:
Pull up revs. 1.15-1.16 (approved by thorpej):
Add internal names for brk(), sbrk() and fork().
diffstat:
lib/libc/arch/i386/sys/brk.S | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diffs (36 lines):
diff -r 7670dafcf9b4 -r 048fc3b4e51e lib/libc/arch/i386/sys/brk.S
--- a/lib/libc/arch/i386/sys/brk.S Mon Aug 21 17:41:05 2000 +0000
+++ b/lib/libc/arch/i386/sys/brk.S Mon Aug 21 17:42:03 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: brk.S,v 1.14 2000/04/03 04:13:36 mycroft Exp $ */
+/* $NetBSD: brk.S,v 1.14.4.1 2000/08/21 17:42:03 kleink Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -40,7 +40,7 @@
#include <machine/asm.h>
#if defined(SYSLIBC_SCCS) && !defined(lint)
- RCSID("$NetBSD: brk.S,v 1.14 2000/04/03 04:13:36 mycroft Exp $")
+ RCSID("$NetBSD: brk.S,v 1.14.4.1 2000/08/21 17:42:03 kleink Exp $")
#endif /* SYSLIBC_SCCS and not lint */
#include "SYS.h"
@@ -49,12 +49,16 @@
.globl _C_LABEL(__minbrk)
.globl CURBRK
+#ifdef WEAK_ALIAS
+WEAK_ALIAS(brk, _brk)
+#endif
+
.data
_C_LABEL(__minbrk):
.long _end
.text
-ENTRY(brk)
+ENTRY(_brk)
#ifdef PIC
movl 4(%esp),%ecx
PIC_PROLOGUE
Home |
Main Index |
Thread Index |
Old Index