summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-13 16:48:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-13 16:48:08 +0000
commit4423e62ac1d7bc7ed4e809ab5ac15540ea61c4c9 (patch)
treec28487317f85b85e38f401a04327f158f11c5776 /cpukit/score/include
parent2009-05-11 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-4423e62ac1d7bc7ed4e809ab5ac15540ea61c4c9.tar.bz2
2009-05-13 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1411/cpukit * rtems/src/workspace.c, score/include/rtems/score/protectedheap.h, score/src/pheapgetfreeinfo.c, score/src/pheapgetinfo.c: Improve workspace wrapper methods.
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
);