summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/pheapfree.c
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/src/pheapfree.c
parent2008-09-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-484a76996eeb65ad726b65946642516c70b3257b.tar.bz2
Convert to "bool".
Diffstat (limited to 'cpukit/score/src/pheapfree.c')
-rw-r--r--cpukit/score/src/pheapfree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/pheapfree.c b/cpukit/score/src/pheapfree.c
index 0d5737aac6..1548547855 100644
--- a/cpukit/score/src/pheapfree.c
+++ b/cpukit/score/src/pheapfree.c
@@ -16,12 +16,12 @@
#include <rtems/system.h>
#include <rtems/score/protectedheap.h>
-boolean _Protected_heap_Free(
+bool _Protected_heap_Free(
Heap_Control *the_heap,
void *start_address
)
{
- boolean status;
+ bool status;
_RTEMS_Lock_allocator();
status = _Heap_Free( the_heap, start_address );