summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/heap.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 17:46:39 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 17:46:39 +0000
commit484a76996eeb65ad726b65946642516c70b3257b (patch)
tree6aed4eba45d4eb704f004622ecbf63e275bb876c /cpukit/score/include/rtems/score/heap.h
parent2008-09-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-484a76996eeb65ad726b65946642516c70b3257b.tar.bz2
Convert to "bool".
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/heap.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/include/rtems/score/heap.h b/cpukit/score/include/rtems/score/heap.h
index db7e32355c..0587852d78 100644
--- a/cpukit/score/include/rtems/score/heap.h
+++ b/cpukit/score/include/rtems/score/heap.h
@@ -333,7 +333,7 @@ void *_Heap_Allocate_aligned(
* @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
*/
-boolean _Heap_Size_of_user_area(
+bool _Heap_Size_of_user_area(
Heap_Control *the_heap,
void *starting_address,
size_t *size
@@ -379,7 +379,7 @@ Heap_Resize_status _Heap_Resize_block(
* to free
* @return TRUE if successfully freed, FALSE otherwise
*/
-boolean _Heap_Free(
+bool _Heap_Free(
Heap_Control *the_heap,
void *start_address
);
@@ -393,10 +393,10 @@ boolean _Heap_Free(
* @param[in] do_dump is set to TRUE if errors should be printed
* @return TRUE if the test passed fine, FALSE otherwise.
*/
-boolean _Heap_Walk(
+bool _Heap_Walk(
Heap_Control *the_heap,
int source,
- boolean do_dump
+ bool do_dump
);
/**