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.
This commit is contained in:
Ralf Corsepius
2004-03-30 11:12:47 +00:00
parent 4c84d7b760
commit 9919946a82
14 changed files with 39 additions and 31 deletions

View File

@@ -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 ***" );