summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tm10/task1.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-02-06 19:14:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-02-06 19:14:37 +0000
commit5343588483977b1c75732fe3757aa8208e782a57 (patch)
tree4b55a30af930387506fff385dda5d59a00ad6d92 /testsuites/tmtests/tm10/task1.c
parent2007-02-06 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-5343588483977b1c75732fe3757aa8208e782a57.tar.bz2
2007-02-06 Joel Sherrill <joel@OARcorp.com>
* tm09/task1.c, tm10/task1.c, tm11/task1.c, tm12/task1.c, tm13/task1.c, tm14/task1.c, tm22/task1.c: Address size_t/uint32_t typing issues in message queue tests.
Diffstat (limited to 'testsuites/tmtests/tm10/task1.c')
-rw-r--r--testsuites/tmtests/tm10/task1.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuites/tmtests/tm10/task1.c b/testsuites/tmtests/tm10/task1.c
index 076154e49e..6f010d13d6 100644
--- a/testsuites/tmtests/tm10/task1.c
+++ b/testsuites/tmtests/tm10/task1.c
@@ -1,6 +1,6 @@
/*
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2007.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -48,8 +48,8 @@ rtems_task Init(
void test_init()
{
- uint32_t index;
- uint32_t size;
+ uint32_t index;
+ size_t size;
rtems_task_entry task_entry;
rtems_status_code status;
rtems_task_priority priority;
@@ -117,7 +117,7 @@ rtems_task High_task(
rtems_task_argument argument
)
{
- uint32_t size;
+ size_t size;
Timer_initialize();
(void) rtems_message_queue_receive(
@@ -133,7 +133,7 @@ rtems_task Middle_tasks(
rtems_task_argument argument
)
{
- uint32_t size;
+ size_t size;
(void) rtems_message_queue_receive(
Queue_id,