summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tm26/task1.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-28 07:20:11 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-28 07:20:11 +0000
commit0720ff433e810976ca7c5eb8822c4ffb486e4f2c (patch)
tree03b36a29971a0d0f3cc3c2cc3b159a565c5c99fa /testsuites/tmtests/tm26/task1.c
parent2004-03-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-0720ff433e810976ca7c5eb8822c4ffb486e4f2c.tar.bz2
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.
Diffstat (limited to 'testsuites/tmtests/tm26/task1.c')
-rw-r--r--testsuites/tmtests/tm26/task1.c44
1 files changed, 22 insertions, 22 deletions
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();