forked from Imagelibrary/rtems
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:
@@ -67,7 +67,7 @@ rtems_task Task_1(
|
||||
rtems_task_argument argument
|
||||
)
|
||||
{
|
||||
rtems_unsigned32 index;
|
||||
uint32_t index;
|
||||
|
||||
check_read_timer();
|
||||
rtems_test_pause();
|
||||
@@ -141,8 +141,8 @@ rtems_test_pause();
|
||||
|
||||
void check_read_timer()
|
||||
{
|
||||
rtems_unsigned32 index;
|
||||
rtems_unsigned32 time;
|
||||
uint32_t index;
|
||||
uint32_t time;
|
||||
|
||||
for ( index = 1 ; index <= MAXIMUM_DISTRIBUTION ; index++ )
|
||||
Distribution[ index ] = 0;
|
||||
|
||||
Reference in New Issue
Block a user