From 0720ff433e810976ca7c5eb8822c4ffb486e4f2c Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sun, 28 Mar 2004 07:20:11 +0000 Subject: 2004-03-28 Ralf Corsepius * 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. --- testsuites/tmtests/tm26/task1.c | 44 ++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'testsuites/tmtests/tm26/task1.c') diff --git a/testsuites/tmtests/tm26/task1.c b/testsuites/tmtests/tm26/task1.c index 299fa67ddc..03e866abd7 100644 --- a/testsuites/tmtests/tm26/task1.c +++ b/testsuites/tmtests/tm26/task1.c @@ -34,26 +34,26 @@ Thread_Control *Low_tcb; /* uses internal RTEMS type */ * at the end of the test. */ -rtems_unsigned32 isr_disable_time; -rtems_unsigned32 isr_flash_time; -rtems_unsigned32 isr_enable_time; -rtems_unsigned32 thread_disable_dispatch_time; -rtems_unsigned32 thread_enable_dispatch_time; -rtems_unsigned32 thread_set_state_time; -rtems_unsigned32 thread_dispatch_no_fp_time; -rtems_unsigned32 context_switch_no_fp_time; -rtems_unsigned32 context_switch_self_time; -rtems_unsigned32 context_switch_another_task_time; -rtems_unsigned32 context_switch_restore_1st_fp_time; -rtems_unsigned32 context_switch_save_idle_restore_initted_time; -rtems_unsigned32 context_switch_save_restore_idle_time; -rtems_unsigned32 context_switch_save_restore_initted_time; -rtems_unsigned32 thread_resume_time; -rtems_unsigned32 thread_unblock_time; -rtems_unsigned32 thread_ready_time; -rtems_unsigned32 thread_get_time; -rtems_unsigned32 semaphore_get_time; -rtems_unsigned32 thread_get_invalid_time; +uint32_t isr_disable_time; +uint32_t isr_flash_time; +uint32_t isr_enable_time; +uint32_t thread_disable_dispatch_time; +uint32_t thread_enable_dispatch_time; +uint32_t thread_set_state_time; +uint32_t thread_dispatch_no_fp_time; +uint32_t context_switch_no_fp_time; +uint32_t context_switch_self_time; +uint32_t context_switch_another_task_time; +uint32_t context_switch_restore_1st_fp_time; +uint32_t context_switch_save_idle_restore_initted_time; +uint32_t context_switch_save_restore_idle_time; +uint32_t context_switch_save_restore_initted_time; +uint32_t thread_resume_time; +uint32_t thread_unblock_time; +uint32_t thread_ready_time; +uint32_t thread_get_time; +uint32_t semaphore_get_time; +uint32_t thread_get_invalid_time; rtems_task High_task( rtems_task_argument argument @@ -87,7 +87,7 @@ rtems_task Init( rtems_task_argument argument ) { - rtems_unsigned32 index; + uint32_t index; rtems_id task_id; rtems_status_code status; @@ -376,7 +376,7 @@ rtems_task Floating_point_task_2( void complete_test( void ) { - rtems_unsigned32 index; + uint32_t index; rtems_id task_id; Timer_initialize(); -- cgit v1.2.3