summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/powerpc/brk.S
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-07-30 20:06:01 +0000
committerEric Andersen <andersen@codepoet.org>2004-07-30 20:06:01 +0000
commit9efd18d33815d59900becfac7820902e15b6126e (patch)
treee4fd0e33c81e1eee08ab42a9b452e7a328923ab4 /libc/sysdeps/linux/powerpc/brk.S
parent8ed0fdbe78c0c828efbc183ea8290081fd7b5d03 (diff)
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
Diffstat (limited to 'libc/sysdeps/linux/powerpc/brk.S')
-rw-r--r--libc/sysdeps/linux/powerpc/brk.S8
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/powerpc/brk.S b/libc/sysdeps/linux/powerpc/brk.S
index f7b7e3c84..b914ce814 100644
--- a/libc/sysdeps/linux/powerpc/brk.S
+++ b/libc/sysdeps/linux/powerpc/brk.S
@@ -23,7 +23,7 @@
#include <sys/syscall.h>
#ifdef __NR_brk
- .comm ___brk_addr,4,4
+ .comm __curbrk,4,4
.section ".text"
.globl __brk;
.type __brk, @function;
@@ -39,12 +39,12 @@ __brk:
mflr r4
bl _GLOBAL_OFFSET_TABLE_@local-4
mflr r5
- lwz r5,___brk_addr@got(r5)
+ lwz r5,__curbrk@got(r5)
mtlr r4
stw r3,0(r5)
#else
- lis r4,___brk_addr@ha
- stw r3,___brk_addr@l(r4)
+ lis r4,__curbrk@ha
+ stw r3,__curbrk@l(r4)
#endif
cmplw r6,r3
addi r1,r1,16