summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-03-02 18:10:34 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-03-02 18:10:34 +0000
commit7246c8e9978e63058a688db708d8235f841a8d80 (patch)
tree58a8e68e1f6949d24820bd4a30297b356af2b517 /cpukit/score/include
parent2009-03-02 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-7246c8e9978e63058a688db708d8235f841a8d80.tar.bz2
2009-03-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/malloc_initialize.c, score/Makefile.am, score/include/rtems/score/protectedheap.h, score/inline/rtems/score/heap.inl: Get total heap size correct when using unified C Program Heap and RTEMS Workspace. * score/src/pheapgetsize.c: New file.
Diffstat (limited to 'cpukit/score/include')
-rw-r--r--cpukit/score/include/rtems/score/protectedheap.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/cpukit/score/include/rtems/score/protectedheap.h b/cpukit/score/include/rtems/score/protectedheap.h
index be657155ae..f9407b27db 100644
--- a/cpukit/score/include/rtems/score/protectedheap.h
+++ b/cpukit/score/include/rtems/score/protectedheap.h
@@ -205,6 +205,18 @@ void _Protected_heap_Get_free_information(
Heap_Information *info
);
+/**
+ * This function returns the maximum size of the protected heap.
+ *
+ * @param[in] the_heap points to the heap being operated upon
+ *
+ * @return This method returns the total amount of memory
+ * allocated to the heap.
+ */
+uint32_t _Protected_heap_Get_size(
+ Heap_Control *the_heap
+);
+
#ifdef __cplusplus
}
#endif