commit | 5e93bd1c9aaea886c5e5c7c1b6114ab36c30668f | [log] [tgz] |
---|---|---|
author | Peter Tyser <ptyser@xes-inc.com> | Fri Aug 21 23:05:19 2009 -0500 |
committer | Wolfgang Denk <wd@denx.de> | Fri Sep 04 21:45:39 2009 +0200 |
tree | ec61a4a1610baf8ebfad8fc08688c393368c4dbd | |
parent | 65f6f07b72a71b83d775c4d20d7ebcd6b2d2086d [diff] [blame] |
Consolidate arch-specific sbrk() implementations Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
diff --git a/include/malloc.h b/include/malloc.h index a38464e..0382169 100644 --- a/include/malloc.h +++ b/include/malloc.h
@@ -937,6 +937,12 @@ 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" */