commit | b342d40aa04ed28d7ab512359c4f9b3ee0058c17 | [log] [tgz] |
---|---|---|
author | Peter Tyser <ptyser@xes-inc.com> | Fri Aug 21 23:05:19 2009 -0500 |
committer | Tom Rix <Tom.Rix@windriver.com> | Sat Oct 03 09:04:08 2009 -0500 |
tree | 6f405324c08823032ec97e166460a774648e98d2 | |
parent | e573af853ceb138bb7a4cdd57af6f06df8891211 [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" */