summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/malloc_deferred.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 11:42:19 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 11:42:19 +0000
commit4088d01d9f037d26365d462fa243561da8cd8cb1 (patch)
tree09c49db259194ed146ef51d086e6cb142e63fb1b /cpukit/libcsupport/src/malloc_deferred.c
parent2008-09-01 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-4088d01d9f037d26365d462fa243561da8cd8cb1.tar.bz2
Convert using "bool".
Diffstat (limited to 'cpukit/libcsupport/src/malloc_deferred.c')
-rw-r--r--cpukit/libcsupport/src/malloc_deferred.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/libcsupport/src/malloc_deferred.c b/cpukit/libcsupport/src/malloc_deferred.c
index 923b0d980d..4289a899bc 100644
--- a/cpukit/libcsupport/src/malloc_deferred.c
+++ b/cpukit/libcsupport/src/malloc_deferred.c
@@ -24,15 +24,15 @@
rtems_chain_control RTEMS_Malloc_GC_list;
-boolean malloc_is_system_state_OK(void)
+bool malloc_is_system_state_OK(void)
{
if ( _Thread_Dispatch_disable_level > 0 )
- return FALSE;
+ return false;
if ( _ISR_Nest_level > 0 )
- return FALSE;
+ return false;
- return TRUE;
+ return true;
}
void malloc_deferred_frees_initialize(void)