summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/rtmonuse/task1.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-30 11:12:47 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-30 11:12:47 +0000
commit9919946a826082275166ebfe37eee168672f7eca (patch)
treec6165403496985bbec8fb1a6b823e1032991673a /testsuites/libtests/rtmonuse/task1.c
parent2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-9919946a826082275166ebfe37eee168672f7eca.tar.bz2
2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org>
* cpuuse/system.h, cpuuse/task1.c, cpuuse/tswitch.c, monitor/init.c, monitor/system.h, rtems++/System.h, rtems++/Task1.cc, rtems++/Task2.cc, rtems++/Task3.cc, rtmonuse/init.c, rtmonuse/system.h, rtmonuse/task1.c, stackchk/blow.c: Convert to using c99 fixed size types.
Diffstat (limited to '')
-rw-r--r--testsuites/libtests/rtmonuse/task1.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/testsuites/libtests/rtmonuse/task1.c b/testsuites/libtests/rtmonuse/task1.c
index aae5cce94b..dcaf0376e6 100644
--- a/testsuites/libtests/rtmonuse/task1.c
+++ b/testsuites/libtests/rtmonuse/task1.c
@@ -23,19 +23,19 @@
#include <rtems/cpuuse.h>
#include <rtems/rtmonuse.h>
-rtems_unsigned32 Periods[6] = { 0, 2, 2, 2, 2, 100 };
-rtems_unsigned32 Iterations[6] = { 0, 50, 50, 50, 50, 1 };
+uint32_t Periods[6] = { 0, 2, 2, 2, 2, 100 };
+uint32_t Iterations[6] = { 0, 50, 50, 50, 50, 1 };
rtems_task_priority Priorities[6] = { 0, 1, 1, 3, 4, 5 };
rtems_task Task_1_through_5(
- rtems_unsigned32 argument
+ uint32_t argument
)
{
rtems_id rmid;
rtems_id test_rmid;
- rtems_unsigned32 index;
- rtems_unsigned32 pass;
- rtems_unsigned32 failed;
+ uint32_t index;
+ uint32_t pass;
+ uint32_t failed;
rtems_status_code status;
status = rtems_rate_monotonic_create( argument, &rmid );