summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/monitor
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/libtests/monitor')
-rw-r--r--testsuites/libtests/monitor/init.c4
-rw-r--r--testsuites/libtests/monitor/system.h2
2 files changed, 3 insertions, 3 deletions
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 */