summaryrefslogtreecommitdiffstats
path: root/testsuites/mptests/mp14/evtask1.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/mptests/mp14/evtask1.c')
-rw-r--r--testsuites/mptests/mp14/evtask1.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuites/mptests/mp14/evtask1.c b/testsuites/mptests/mp14/evtask1.c
index d8665e73ca..3703d93ced 100644
--- a/testsuites/mptests/mp14/evtask1.c
+++ b/testsuites/mptests/mp14/evtask1.c
@@ -59,8 +59,8 @@ rtems_task Test_task(
if ( Multiprocessing_configuration.node == 1 ) {
puts( "Sending events to remote task" );
- while ( Stop_Test == FALSE ) {
- for ( count=EVENT_TASK_DOT_COUNT; Stop_Test == FALSE && count; count-- ) {
+ while ( Stop_Test == false ) {
+ for ( count=EVENT_TASK_DOT_COUNT; Stop_Test == false && count; count-- ) {
status = rtems_event_send( remote_tid, RTEMS_EVENT_16 );
directive_failed( status, "rtems_event_send" );
}
@@ -69,8 +69,8 @@ rtems_task Test_task(
}
puts( "Receiving events from remote task" );
- while ( Stop_Test == FALSE ) {
- for ( count=EVENT_TASK_DOT_COUNT ; Stop_Test == FALSE && count ; count-- ) {
+ while ( Stop_Test == false ) {
+ for ( count=EVENT_TASK_DOT_COUNT ; Stop_Test == false && count ; count-- ) {
status = rtems_event_receive(
RTEMS_EVENT_16,
RTEMS_DEFAULT_OPTIONS,