summaryrefslogtreecommitdiffstats
path: root/testsuites/mptests/mp14/init.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-03 22:06:22 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-03 22:06:22 +0000
commitf2ad3d120b411fffb13890f20597d8e0c5345cf7 (patch)
tree1922ad7dfa027eca065b9dd816cc0496fa249387 /testsuites/mptests/mp14/init.c
parent2008-09-03 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-f2ad3d120b411fffb13890f20597d8e0c5345cf7.tar.bz2
2008-09-03 Joel Sherrill <joel.sherrill@OARcorp.com>
* mp05/system.h, mp05/task1.c, mp06/system.h, mp06/task1.c, mp07/system.h, mp07/task1.c, mp14/evtask1.c, mp14/evtmtask.c, mp14/init.c, mp14/msgtask1.c, mp14/pttask1.c, mp14/smtask1.c, mp14/system.h: Convert to bool type.
Diffstat (limited to 'testsuites/mptests/mp14/init.c')
-rw-r--r--testsuites/mptests/mp14/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/mptests/mp14/init.c b/testsuites/mptests/mp14/init.c
index 3afcff4585..2f6036e317 100644
--- a/testsuites/mptests/mp14/init.c
+++ b/testsuites/mptests/mp14/init.c
@@ -31,7 +31,7 @@ rtems_timer_service_routine Stop_Test_TSR(
void *ignored_address
)
{
- Stop_Test = TRUE;
+ Stop_Test = true;
}
rtems_task Init(
@@ -46,7 +46,7 @@ rtems_task Init(
Multiprocessing_configuration.node
);
- Stop_Test = FALSE;
+ Stop_Test = false;
status = rtems_timer_create(
rtems_build_name('S', 'T', 'O', 'P'),