summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tm12
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-09 21:24:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-09 21:24:06 +0000
commit1055ce20fce7730cd46bb41230252cbaf1acce83 (patch)
treef1bafa58b57cfe61d7acf5947f4d1fb337e72c9e /testsuites/tmtests/tm12
parent2009-05-09 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-1055ce20fce7730cd46bb41230252cbaf1acce83.tar.bz2
Fix most warnings.
Diffstat (limited to 'testsuites/tmtests/tm12')
-rw-r--r--testsuites/tmtests/tm12/task1.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/testsuites/tmtests/tm12/task1.c b/testsuites/tmtests/tm12/task1.c
index a79cefdfe5..be8910c356 100644
--- a/testsuites/tmtests/tm12/task1.c
+++ b/testsuites/tmtests/tm12/task1.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -45,7 +45,7 @@ rtems_task Init(
status = rtems_task_create(
1,
- RTEMS_MAXIMUM_PRIORITY - 1,
+ RTEMS_MAXIMUM_PRIORITY - 1u,
RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
@@ -64,7 +64,7 @@ rtems_task test_init(
rtems_task_argument argument
)
{
- uint32_t index;
+ int index;
rtems_task_entry task_entry;
rtems_task_priority priority;
rtems_id task_id;
@@ -73,14 +73,14 @@ rtems_task test_init(
status = rtems_message_queue_create(
rtems_build_name( 'M', 'Q', '1', ' ' ),
- operation_count,
+ (uint32_t) operation_count,
MESSAGE_SIZE,
RTEMS_DEFAULT_ATTRIBUTES,
&Queue_id
);
directive_failed( status, "rtems_message_queue_create" );
- priority = RTEMS_MAXIMUM_PRIORITY - 1;
+ priority = RTEMS_MAXIMUM_PRIORITY - 1u;
if ( OPERATION_COUNT > RTEMS_MAXIMUM_PRIORITY - 2 )
operation_count = RTEMS_MAXIMUM_PRIORITY - 2;
@@ -98,8 +98,8 @@ rtems_task test_init(
priority--;
- if ( index==operation_count-1 ) task_entry = High_task;
- else task_entry = Low_tasks;
+ if ( index == operation_count-1 ) task_entry = High_task;
+ else task_entry = Low_tasks;
status = rtems_task_start( task_id, task_entry, 0 );
directive_failed( status, "rtems_task_start LOOP" );
@@ -110,7 +110,7 @@ rtems_task High_task(
rtems_task_argument argument
)
{
- uint32_t index;
+ int index;
benchmark_timer_initialize();
for ( index=1 ; index < operation_count ; index++ )