summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline/rtems/score/object.inl
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/inline/rtems/score/object.inl
parent2008-09-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-484a76996eeb65ad726b65946642516c70b3257b.tar.bz2
Convert to "bool".
Diffstat (limited to 'cpukit/score/inline/rtems/score/object.inl')
-rw-r--r--cpukit/score/inline/rtems/score/object.inl8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/inline/rtems/score/object.inl b/cpukit/score/inline/rtems/score/object.inl
index 0e8feb02b2..f3b1730f18 100644
--- a/cpukit/score/inline/rtems/score/object.inl
+++ b/cpukit/score/inline/rtems/score/object.inl
@@ -112,7 +112,7 @@ RTEMS_INLINE_ROUTINE uint32_t _Objects_Get_index(
* @return This method returns TRUE if the specified api value is valid
* and FALSE otherwise.
*/
-RTEMS_INLINE_ROUTINE boolean _Objects_Is_api_valid(
+RTEMS_INLINE_ROUTINE bool _Objects_Is_api_valid(
uint32_t the_api
)
{
@@ -131,7 +131,7 @@ RTEMS_INLINE_ROUTINE boolean _Objects_Is_api_valid(
* @return This method returns TRUE if the specified node is the local node
* and FALSE otherwise.
*/
-RTEMS_INLINE_ROUTINE boolean _Objects_Is_local_node(
+RTEMS_INLINE_ROUTINE bool _Objects_Is_local_node(
uint32_t node
)
{
@@ -149,7 +149,7 @@ RTEMS_INLINE_ROUTINE boolean _Objects_Is_local_node(
*
* @note On a single processor configuration, this always returns TRUE.
*/
-RTEMS_INLINE_ROUTINE boolean _Objects_Is_local_id(
+RTEMS_INLINE_ROUTINE bool _Objects_Is_local_id(
Objects_Id id
)
{
@@ -170,7 +170,7 @@ RTEMS_INLINE_ROUTINE boolean _Objects_Is_local_id(
* @return This method returns TRUE if the specified object IDs are equal
* and FALSE otherwise.
*/
-RTEMS_INLINE_ROUTINE boolean _Objects_Are_ids_equal(
+RTEMS_INLINE_ROUTINE bool _Objects_Are_ids_equal(
Objects_Id left,
Objects_Id right
)