summaryrefslogtreecommitdiffstats
path: root/testsuites/mptests/mp14/smtask1.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/mptests/mp14/smtask1.c')
-rw-r--r--testsuites/mptests/mp14/smtask1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/mptests/mp14/smtask1.c b/testsuites/mptests/mp14/smtask1.c
index eeda002a9d..3faefacfa1 100644
--- a/testsuites/mptests/mp14/smtask1.c
+++ b/testsuites/mptests/mp14/smtask1.c
@@ -44,9 +44,9 @@ rtems_task Semaphore_task(
yield_count = 100;
- while ( Stop_Test == FALSE ) {
+ while ( Stop_Test == false ) {
- for ( count=SEMAPHORE_DOT_COUNT ; Stop_Test == FALSE && count ; count-- ) {
+ for ( count=SEMAPHORE_DOT_COUNT ; Stop_Test == false && count ; count-- ) {
status = rtems_semaphore_obtain(
Semaphore_id[ 1 ],
RTEMS_DEFAULT_OPTIONS,
@@ -57,7 +57,7 @@ rtems_task Semaphore_task(
status = rtems_semaphore_release( Semaphore_id[ 1 ] );
directive_failed( status, "rtems_semaphore_release" );
- if ( Stop_Test == FALSE )
+ if ( Stop_Test == false )
if ( Multiprocessing_configuration.node == 1 && --yield_count == 0 ) {
status = rtems_task_wake_after( RTEMS_YIELD_PROCESSOR );
directive_failed( status, "rtems_task_wake_after" );