From 9efd18d33815d59900becfac7820902e15b6126e Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 30 Jul 2004 20:06:01 +0000 Subject: s/___brk_addr/__curbrk/g Some utilities, such as valgrind, have a legitimate reason to know the address of the current brk. Since we know such utils will peek under our skirt, we might as well give them what they expect and not use a gratuitously different symbol name. -Erik --- libc/sysdeps/linux/arm/brk.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libc/sysdeps/linux/arm/brk.c') diff --git a/libc/sysdeps/linux/arm/brk.c b/libc/sysdeps/linux/arm/brk.c index 0262aa110..fa0326a0e 100644 --- a/libc/sysdeps/linux/arm/brk.c +++ b/libc/sysdeps/linux/arm/brk.c @@ -22,7 +22,7 @@ #include /* This must be initialized data because commons can't have aliases. */ -void *___brk_addr = 0; +void *__curbrk = 0; int brk (void *addr) { @@ -31,11 +31,11 @@ int brk (void *addr) asm ("mov a1, %1\n" /* save the argment in r0 */ "swi %2\n" /* do the system call */ "mov %0, a1;" /* keep the return value */ - : "=r"(newbrk) + : "=r"(newbrk) : "r"(addr), "i" (__NR_brk) : "a1"); - ___brk_addr = newbrk; + __curbrk = newbrk; if (newbrk < addr) { -- cgit v1.2.3