summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/include')
-rw-r--r--cpukit/score/include/rtems/score/protectedheap.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/protectedheap.h b/cpukit/score/include/rtems/score/protectedheap.h
index f9407b27db..ffe6b8406a 100644
--- a/cpukit/score/include/rtems/score/protectedheap.h
+++ b/cpukit/score/include/rtems/score/protectedheap.h
@@ -185,8 +185,10 @@ bool _Protected_heap_Walk(
*
* @param[in] the_heap pointer to heap header
* @param[in] the_info pointer to a status information area
+ *
+ * @return true if successfully able to return information
*/
-void _Protected_heap_Get_information(
+bool _Protected_heap_Get_information(
Heap_Control *the_heap,
Heap_Information_block *the_info
);
@@ -200,7 +202,7 @@ void _Protected_heap_Get_information(
*
* @return free block information filled in.
*/
-void _Protected_heap_Get_free_information(
+bool _Protected_heap_Get_free_information(
Heap_Control *the_heap,
Heap_Information *info
);