summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectmp.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-12-22 05:52:32 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-12-22 05:52:32 +0000
commitaae7f1a12b1d5bfe7233ce45532dba3ce651357b (patch)
tree072e6a5712a00830e7d89115cb2ee9b1f9f1895e /cpukit/score/src/objectmp.c
parent2008-12-22 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-aae7f1a12b1d5bfe7233ce45532dba3ce651357b.tar.bz2
Eliminate TRUE/FALSE.
Diffstat (limited to 'cpukit/score/src/objectmp.c')
-rw-r--r--cpukit/score/src/objectmp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/score/src/objectmp.c b/cpukit/score/src/objectmp.c
index 58b52f93dc..a6e6b9c534 100644
--- a/cpukit/score/src/objectmp.c
+++ b/cpukit/score/src/objectmp.c
@@ -42,7 +42,7 @@ void _Objects_MP_Handler_initialization(void)
if ( node < 1 || node > maximum_nodes )
_Internal_error_Occurred(
INTERNAL_ERROR_CORE,
- TRUE,
+ true,
INTERNAL_ERROR_INVALID_NODE
);
@@ -108,12 +108,12 @@ bool _Objects_MP_Allocate_and_open (
the_global_object = _Objects_MP_Allocate_global_object();
if ( _Objects_MP_Is_null_global_object( the_global_object ) ) {
- if ( is_fatal_error == FALSE )
- return FALSE;
+ if ( is_fatal_error == false )
+ return false;
_Internal_error_Occurred(
INTERNAL_ERROR_CORE,
- TRUE,
+ true,
INTERNAL_ERROR_OUT_OF_GLOBAL_OBJECTS
);
@@ -121,7 +121,7 @@ bool _Objects_MP_Allocate_and_open (
_Objects_MP_Open( information, the_global_object, the_name, the_id );
- return TRUE;
+ return true;
}
/*PAGE
@@ -158,7 +158,7 @@ void _Objects_MP_Close (
_Internal_error_Occurred(
INTERNAL_ERROR_CORE,
- TRUE,
+ true,
INTERNAL_ERROR_INVALID_GLOBAL_ID
);
}