summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/inline/rtems/rtems/ratemon.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/rtems/inline/rtems/rtems/ratemon.inl
parent2008-09-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-484a76996eeb65ad726b65946642516c70b3257b.tar.bz2
Convert to "bool".
Diffstat (limited to 'cpukit/rtems/inline/rtems/rtems/ratemon.inl')
-rw-r--r--cpukit/rtems/inline/rtems/rtems/ratemon.inl8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/rtems/inline/rtems/rtems/ratemon.inl b/cpukit/rtems/inline/rtems/rtems/ratemon.inl
index 3fcb845da1..2e8964faa1 100644
--- a/cpukit/rtems/inline/rtems/rtems/ratemon.inl
+++ b/cpukit/rtems/inline/rtems/rtems/ratemon.inl
@@ -76,7 +76,7 @@ RTEMS_INLINE_ROUTINE Rate_monotonic_Control *_Rate_monotonic_Get (
* This function returns TRUE if the_period is in the ACTIVE state,
* and FALSE otherwise.
*/
-RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_active (
+RTEMS_INLINE_ROUTINE bool _Rate_monotonic_Is_active (
Rate_monotonic_Control *the_period
)
{
@@ -89,7 +89,7 @@ RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_active (
* This function returns TRUE if the_period is in the ACTIVE state,
* and FALSE otherwise.
*/
-RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_inactive (
+RTEMS_INLINE_ROUTINE bool _Rate_monotonic_Is_inactive (
Rate_monotonic_Control *the_period
)
{
@@ -102,7 +102,7 @@ RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_inactive (
* This function returns TRUE if the_period is in the EXPIRED state,
* and FALSE otherwise.
*/
-RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_expired (
+RTEMS_INLINE_ROUTINE bool _Rate_monotonic_Is_expired (
Rate_monotonic_Control *the_period
)
{
@@ -114,7 +114,7 @@ RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_expired (
*
* This function returns TRUE if the_period is NULL and FALSE otherwise.
*/
-RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_null (
+RTEMS_INLINE_ROUTINE bool _Rate_monotonic_Is_null (
Rate_monotonic_Control *the_period
)
{