summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/protectedheap.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/include/rtems/score/protectedheap.h')
-rw-r--r--cpukit/score/include/rtems/score/protectedheap.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/score/include/rtems/score/protectedheap.h b/cpukit/score/include/rtems/score/protectedheap.h
index 1d71ac9b3f..be657155ae 100644
--- a/cpukit/score/include/rtems/score/protectedheap.h
+++ b/cpukit/score/include/rtems/score/protectedheap.h
@@ -115,14 +115,14 @@ void *_Protected_heap_Allocate_aligned(
* This function sets @a *size to the size of the block of user memory
* which begins at @a starting_address. The size returned in @a *size could
* be greater than the size requested for allocation.
- * Returns TRUE if the @a starting_address is in the heap, and FALSE
+ * Returns true if the @a starting_address is in the heap, and false
* otherwise.
*
* @param[in] the_heap is the heap to operate upon
* @param[in] starting_address is the starting address of the user block
* to obtain the size of
* @param[in] size points to a user area to return the size in
- * @return TRUE if successfully able to determine the size, FALSE otherwise
+ * @return true if successfully able to determine the size, false otherwise
* @return *size filled in with the size of the user area for this block
*/
bool _Protected_heap_Get_block_size(
@@ -140,8 +140,8 @@ bool _Protected_heap_Get_block_size(
* to be resized
* @param[in] size is the new size
*
- * @return TRUE if successfully able to resize the block.
- * FALSE if the block can't be resized in place.
+ * @return true if successfully able to resize the block.
+ * false if the block can't be resized in place.
*/
bool _Protected_heap_Resize_block(
Heap_Control *the_heap,
@@ -157,7 +157,7 @@ bool _Protected_heap_Resize_block(
* @param[in] the_heap is the heap to operate upon
* @param[in] start_address is the starting address of the user block
* to free
- * @return TRUE if successfully freed, FALSE otherwise
+ * @return true if successfully freed, false otherwise
*/
bool _Protected_heap_Free(
Heap_Control *the_heap,
@@ -170,8 +170,8 @@ bool _Protected_heap_Free(
* @param[in] the_heap is the heap to operate upon
* @param[in] source is a user specified integer which may be used to
* indicate where in the application this was invoked from
- * @param[in] do_dump is set to TRUE if errors should be printed
- * @return TRUE if the test passed fine, FALSE otherwise.
+ * @param[in] do_dump is set to true if errors should be printed
+ * @return true if the test passed fine, false otherwise.
*/
bool _Protected_heap_Walk(
Heap_Control *the_heap,