summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxtime
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-12 20:50:35 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-12 20:50:35 +0000
commitc9460e17ede95c5025d3355e0b5dab61aff050a5 (patch)
treefe633c1a41a94662778547431a2b30e70c7b71ee /testsuites/psxtests/psxtime
parent2009-08-12 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-c9460e17ede95c5025d3355e0b5dab61aff050a5.tar.bz2
2009-08-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxfile01/test.c, psxstat/test.c, psxtime/test.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/psxtests/psxtime')
-rw-r--r--testsuites/psxtests/psxtime/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxtime/test.c b/testsuites/psxtests/psxtime/test.c
index dec42affcf..efb531d446 100644
--- a/testsuites/psxtests/psxtime/test.c
+++ b/testsuites/psxtests/psxtime/test.c
@@ -84,7 +84,7 @@ void check_a_tod(
a_tm = gmtime( &a_time_t );
printf( "gmtime: %s\n", asctime( a_tm ) );
- status = rtems_task_wake_after( 5 * TICKS_PER_SECOND );
+ status = rtems_task_wake_after( 5 * rtems_clock_get_ticks_per_second() );
i++;