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.
This commit is contained in:
Ralf Corsepius
2004-03-28 07:20:11 +00:00
parent 02c7c81471
commit 0720ff433e
32 changed files with 135 additions and 123 deletions

View File

@@ -14,7 +14,7 @@
#include "system.h"
rtems_id Task_id[OPERATION_COUNT+1];
rtems_unsigned32 Task_index;
uint32_t Task_index;
rtems_task High_task(
rtems_task_argument argument
@@ -51,7 +51,7 @@ void test_init()
rtems_status_code status;
rtems_task_entry task_entry;
rtems_task_priority priority;
rtems_unsigned32 index;
uint32_t index;
priority = 250;