summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/timerinserthelper.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 15:23:12 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 15:23:12 +0000
commitf8437c81d5e191ebe10374938974315aee07faf3 (patch)
tree81e073f66d0e943a7067e5b36923dd1a10219137 /cpukit/posix/src/timerinserthelper.c
parent2008-09-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f8437c81d5e191ebe10374938974315aee07faf3.tar.bz2
Convert to "bool".
Diffstat (limited to 'cpukit/posix/src/timerinserthelper.c')
-rw-r--r--cpukit/posix/src/timerinserthelper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/posix/src/timerinserthelper.c b/cpukit/posix/src/timerinserthelper.c
index 79178ca605..a2ced7a79b 100644
--- a/cpukit/posix/src/timerinserthelper.c
+++ b/cpukit/posix/src/timerinserthelper.c
@@ -24,7 +24,7 @@
#include <rtems/posix/timer.h>
#include <rtems/posix/ptimer.h>
-boolean _POSIX_Timer_Insert_helper(
+bool _POSIX_Timer_Insert_helper(
Watchdog_Control *timer,
Watchdog_Interval ticks,
Objects_Id id,
@@ -43,7 +43,7 @@ boolean _POSIX_Timer_Insert_helper(
*/
if ( timer->state != WATCHDOG_INACTIVE ) {
_ISR_Enable( level );
- return FALSE;
+ return false;
}
/*
@@ -53,5 +53,5 @@ boolean _POSIX_Timer_Insert_helper(
_Watchdog_Initialize( timer, TSR, id, arg );
_Watchdog_Insert_ticks( timer, ticks );
_ISR_Enable( level );
- return TRUE;
+ return true;
}