summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPeter Tyser <ptyser@xes-inc.com>2009-08-21 23:05:19 -0500
committerTom Rix <Tom.Rix@windriver.com>2009-10-03 09:04:08 -0500
commitd870552ee4b83842e23cbd64a3a38b277136d568 (patch)
tree6f405324c08823032ec97e166460a774648e98d2 /include
parent2c17527f506564499e9aac82c8d778ac12b83c5f (diff)
downloadu-boot-imx-d870552ee4b83842e23cbd64a3a38b277136d568.zip
u-boot-imx-d870552ee4b83842e23cbd64a3a38b277136d568.tar.gz
u-boot-imx-d870552ee4b83842e23cbd64a3a38b277136d568.tar.bz2
Consolidate arch-specific sbrk() implementations
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'include')
-rw-r--r--include/malloc.h6
1 files changed, 6 insertions, 0 deletions
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 @@ 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" */