summaryrefslogtreecommitdiffstats
path: root/testsuites/mptests/mp05/task1.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/mp05/task1.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 '')
-rw-r--r--testsuites/mptests/mp05/task1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/mptests/mp05/task1.c b/testsuites/mptests/mp05/task1.c
index 680b78640a..4a77fec531 100644
--- a/testsuites/mptests/mp05/task1.c
+++ b/testsuites/mptests/mp05/task1.c
@@ -30,7 +30,7 @@ rtems_timer_service_routine Stop_Test_TSR(
void *ignored_address
)
{
- Stop_Test = TRUE;
+ Stop_Test = true;
}
rtems_task Test_task(
@@ -39,7 +39,7 @@ rtems_task Test_task(
{
rtems_status_code status;
- Stop_Test = FALSE;
+ Stop_Test = false;
signal_caught = 0;
signal_count = 0;