summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp09/screen02.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-12 20:50:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-12 20:50:43 +0000
commit1f7ee0275be8c5e33554fa9d5e047a4b9c7ff5be (patch)
treebaf854da2e1277cf90cb5e176077c779fa201929 /testsuites/sptests/sp09/screen02.c
parent2009-08-12 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-1f7ee0275be8c5e33554fa9d5e047a4b9c7ff5be.tar.bz2
2009-08-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* 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().
Diffstat (limited to 'testsuites/sptests/sp09/screen02.c')
-rw-r--r--testsuites/sptests/sp09/screen02.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/testsuites/sptests/sp09/screen02.c b/testsuites/sptests/sp09/screen02.c
index e2b3ec320a..113dbf27e9 100644
--- a/testsuites/sptests/sp09/screen02.c
+++ b/testsuites/sptests/sp09/screen02.c
@@ -6,7 +6,7 @@
*
* Output parameters: NONE
*
- * COPYRIGHT (c) 1989-2007.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -170,7 +170,10 @@ void Screen2()
);
puts( " - RTEMS_INVALID_CLOCK" );
- build_time( &time, 2, 5, 1988, 8, 30, 45, TICKS_PER_SECOND + 1 );
+ build_time(
+ &time, 2, 5, 1988, 8, 30, 45,
+ rtems_clock_get_ticks_per_second() + 1
+ );
print_time( "TA1 - rtems_clock_set - ", &time, "" );
status = rtems_clock_set( &time );
fatal_directive_status(
@@ -188,7 +191,11 @@ void Screen2()
/* rtems_task_wake_when */
- build_time( &time, 2, 5, 1988, 8, 30, 48, TICKS_PER_SECOND + 1 );
+ build_time(
+ &time,
+ 2, 5, 1988, 8, 30, 48,
+ rtems_clock_get_ticks_per_second() + 1
+ );
time.second += 3;
puts( "TA1 - rtems_task_wake_when - TICKINVALID - sleep about 3 seconds" );