From 9919946a826082275166ebfe37eee168672f7eca Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 30 Mar 2004 11:12:47 +0000 Subject: 2004-03-30 Ralf Corsepius * 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. --- testsuites/libtests/monitor/init.c | 4 ++-- testsuites/libtests/monitor/system.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'testsuites/libtests/monitor') diff --git a/testsuites/libtests/monitor/init.c b/testsuites/libtests/monitor/init.c index 8b7cbde7fe..88920e6c0d 100644 --- a/testsuites/libtests/monitor/init.c +++ b/testsuites/libtests/monitor/init.c @@ -21,7 +21,7 @@ rtems_task_priority Priorities[6] = { 0, 1, 1, 3, 4, 5 }; rtems_task Task_1_through_5( - rtems_unsigned32 argument + uint32_t argument ) { rtems_status_code status; @@ -38,7 +38,7 @@ rtems_task Init( rtems_task_argument argument ) { - rtems_unsigned32 index; + uint32_t index; rtems_status_code status; puts( "\n\n*** MONITOR TASK TEST ***" ); diff --git a/testsuites/libtests/monitor/system.h b/testsuites/libtests/monitor/system.h index 0be01a2070..d5175606e7 100644 --- a/testsuites/libtests/monitor/system.h +++ b/testsuites/libtests/monitor/system.h @@ -18,7 +18,7 @@ /* types */ struct counters { - rtems_unsigned32 count[6]; + uint32_t count[6]; }; /* functions */ -- cgit v1.2.3