summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/trcv_mbx.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 16:04:00 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 16:04:00 +0000
commit22d66ab1af9cafec423a78692286c64b4da1c80b (patch)
treeae1d5b5934a07f5c4906d754f3acac4812e4a4a6 /cpukit/itron/src/trcv_mbx.c
parentConvert to "bool". (diff)
downloadrtems-22d66ab1af9cafec423a78692286c64b4da1c80b.tar.bz2
Convert to "bool".
Diffstat (limited to 'cpukit/itron/src/trcv_mbx.c')
-rw-r--r--cpukit/itron/src/trcv_mbx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/itron/src/trcv_mbx.c b/cpukit/itron/src/trcv_mbx.c
index 8b8dec0168..156b3b004d 100644
--- a/cpukit/itron/src/trcv_mbx.c
+++ b/cpukit/itron/src/trcv_mbx.c
@@ -32,18 +32,18 @@ ER trcv_msg(
{
register ITRON_Mailbox_Control *the_mailbox;
Watchdog_Interval interval;
- boolean wait;
+ bool wait;
Objects_Locations location;
- uint32_t size;
+ size_t size;
if (!ppk_msg)
return E_PAR;
interval = 0;
if ( tmout == TMO_POL ) {
- wait = FALSE;
+ wait = false;
} else {
- wait = TRUE;
+ wait = true;
if ( tmout != TMO_FEVR )
interval = TOD_MILLISECONDS_TO_TICKS(tmout);
}