From 1f7ee0275be8c5e33554fa9d5e047a4b9c7ff5be Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 12 Aug 2009 20:50:43 +0000 Subject: 2009-08-12 Joel Sherrill * sp02/task1.c, sp02/task2.c, sp02/task3.c, sp03/task2.c, sp05/task1.c, sp05/task2.c, sp05/task3.c, sp06/task1.c, sp06/task2.c, sp09/screen02.c, sp09/screen04.c, sp09/screen06.c, sp09/screen07.c, sp09/screen10.c, sp09/screen12.c, sp09/screen13.c, sp09/screen14.c, sp11/task1.c, sp11/task2.c, sp12/pridrv.c, sp12/pritask.c, sp12/task1.c, sp13/task1.c, sp13/task2.c, sp14/task1.c, sp16/task1.c, sp16/task4.c, sp19/fptask.c, sp19/task1.c, sp22/task1.c, sp24/task1.c, sp26/task1.c, sp29/init.c, sp30/task1.c, sp31/task1.c, sp33/init.c, sp45/init.c, sp46/init.c, sp50/init.c, spintrcritical06/init.c, spwatchdog/task1.c: Eliminate test routines TICKS_PER_SECOND and get_ticks_per_second() in favor of new rtems_clock_get_ticks_per_second(). --- testsuites/sptests/sp05/task1.c | 6 +++--- testsuites/sptests/sp05/task2.c | 4 ++-- testsuites/sptests/sp05/task3.c | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'testsuites/sptests/sp05') diff --git a/testsuites/sptests/sp05/task1.c b/testsuites/sptests/sp05/task1.c index 21a89873de..328a2a3788 100644 --- a/testsuites/sptests/sp05/task1.c +++ b/testsuites/sptests/sp05/task1.c @@ -10,7 +10,7 @@ * * NOTE: The rtems_task_suspend() directives fail on the first iteration. * - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2009. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -40,7 +40,7 @@ rtems_task Task_1( for ( pass=1 ; pass <= 3 ; pass++ ) { puts( "TA1 - rtems_task_wake_after - sleep 5 seconds" ); - status = rtems_task_wake_after( 5*TICKS_PER_SECOND ); + status = rtems_task_wake_after( 5*rtems_clock_get_ticks_per_second() ); directive_failed( status, "rtems_task_wake_after of TA1" ); puts( "TA1 - rtems_task_suspend - suspend TA3" ); @@ -60,7 +60,7 @@ rtems_task Task_1( directive_failed( status, "rtems_task_resume of TA2" ); puts( "TA1 - rtems_task_wake_after - sleep 5 seconds" ); - status = rtems_task_wake_after( 5*TICKS_PER_SECOND ); + status = rtems_task_wake_after( 5*rtems_clock_get_ticks_per_second() ); directive_failed( status, "rtems_task_wake_after" ); puts( "TA1 - rtems_task_suspend - suspend TA2" ); diff --git a/testsuites/sptests/sp05/task2.c b/testsuites/sptests/sp05/task2.c index 13d17602e6..aa1fa6af74 100644 --- a/testsuites/sptests/sp05/task2.c +++ b/testsuites/sptests/sp05/task2.c @@ -8,7 +8,7 @@ * * Output parameters: NONE * - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2009. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -32,7 +32,7 @@ rtems_task Task_2( while( FOREVER ) { puts( "TA2 - rtems_task_wake_after - sleep 1 second" ); - status = rtems_task_wake_after( 1*TICKS_PER_SECOND ); + status = rtems_task_wake_after( rtems_clock_get_ticks_per_second() ); directive_failed( status, "rtems_task_wake_after of TA2" ); } } diff --git a/testsuites/sptests/sp05/task3.c b/testsuites/sptests/sp05/task3.c index 3b86f8627c..e6b1941b4f 100644 --- a/testsuites/sptests/sp05/task3.c +++ b/testsuites/sptests/sp05/task3.c @@ -8,7 +8,7 @@ * * Output parameters: NONE * - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2009. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -32,7 +32,7 @@ rtems_task Task_3( while( FOREVER ) { puts( "TA3 - rtems_task_wake_after - sleep 1 second" ); - status = rtems_task_wake_after( 1*TICKS_PER_SECOND ); + status = rtems_task_wake_after( rtems_clock_get_ticks_per_second() ); directive_failed( status, "rtems_task_wake_after of TA3" ); } } -- cgit v1.2.3