summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tm20/task1.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-28 07:20:11 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-28 07:20:11 +0000
commit0720ff433e810976ca7c5eb8822c4ffb486e4f2c (patch)
tree03b36a29971a0d0f3cc3c2cc3b159a565c5c99fa /testsuites/tmtests/tm20/task1.c
parent2004-03-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-0720ff433e810976ca7c5eb8822c4ffb486e4f2c.tar.bz2
2004-03-28 Ralf Corsepius <ralf_corsepius@rtems.org>
* include/timesys.h, tm01/task1.c, tm02/task1.c, tm03/task1.c, tm04/task1.c, tm05/task1.c, tm06/task1.c, tm07/task1.c, tm08/task1.c, tm09/task1.c, tm10/task1.c, tm11/task1.c, tm12/task1.c, tm13/task1.c, tm14/task1.c, tm15/task1.c, tm16/task1.c, tm17/task1.c, tm18/task1.c, tm20/task1.c, tm21/task1.c, tm22/task1.c, tm23/task1.c, tm24/task1.c, tm25/task1.c, tm26/task1.c, tm27/task1.c, tm28/task1.c, tm29/task1.c, tmck/task1.c, tmoverhd/testtask.c: Convert to using c99 fixed size types.
Diffstat (limited to 'testsuites/tmtests/tm20/task1.c')
-rw-r--r--testsuites/tmtests/tm20/task1.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuites/tmtests/tm20/task1.c b/testsuites/tmtests/tm20/task1.c
index 764be21a06..02cc3b0f89 100644
--- a/testsuites/tmtests/tm20/task1.c
+++ b/testsuites/tmtests/tm20/task1.c
@@ -18,7 +18,7 @@ rtems_device_major_number _STUB_major = 1;
rtems_id Region_id;
rtems_name Region_name;
-rtems_unsigned8 Region_area[ 2048 ] CPU_STRUCTURE_ALIGNMENT;
+uint8_t Region_area[ 2048 ] CPU_STRUCTURE_ALIGNMENT;
#define PARTITION_SIZE 2048
#define PARTITION_ELEMENT_SIZE 128
@@ -27,14 +27,14 @@ rtems_unsigned8 Region_area[ 2048 ] CPU_STRUCTURE_ALIGNMENT;
rtems_id Partition_id;
rtems_name Partition_name;
-rtems_unsigned8 Partition_area[ PARTITION_SIZE ] CPU_STRUCTURE_ALIGNMENT;
+uint8_t Partition_area[ PARTITION_SIZE ] CPU_STRUCTURE_ALIGNMENT;
void *Buffer_address_1;
void *Buffer_address_2;
void *Buffer_address_3;
void *Buffer_address_4;
-rtems_unsigned32 buffer_count;
+uint32_t buffer_count;
void *Buffer_addresses[ PARTITION_BUFFER_POINTERS ];
@@ -90,7 +90,7 @@ rtems_task Task_1(
rtems_task_argument argument
)
{
- rtems_unsigned32 index;
+ uint32_t index;
rtems_mode previous_mode;
rtems_task_priority previous_priority;
rtems_status_code status;