diff options
author | Peter Tyser | 2009-08-21 23:05:19 -0500 |
---|---|---|
committer | Wolfgang Denk | 2009-09-04 21:45:39 +0200 |
commit | 5e93bd1c9aaea886c5e5c7c1b6114ab36c30668f (patch) | |
tree | ec61a4a1610baf8ebfad8fc08688c393368c4dbd /include/malloc.h | |
parent | 65f6f07b72a71b83d775c4d20d7ebcd6b2d2086d (diff) |
Consolidate arch-specific sbrk() implementations
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'include/malloc.h')
-rw-r--r-- | include/malloc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/malloc.h b/include/malloc.h index a38464e6291..0382169b6a0 100644 --- a/include/malloc.h +++ b/include/malloc.h @@ -937,6 +937,12 @@ int mALLOPt(); struct mallinfo mALLINFo(); #endif +/* + * Begin and End of memory area for malloc(), and current "brk" + */ +extern ulong mem_malloc_start; +extern ulong mem_malloc_end; +extern ulong mem_malloc_brk; #ifdef __cplusplus }; /* end of extern "C" */ |