From 3c69c467acf7c4ecb31f776fad8f934b6e0d4ca5 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sat, 14 Mar 2015 11:08:01 -0500 Subject: sptests misc: Update to not use deprecated methods --- testsuites/sptests/spqreslib/task_periodic.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testsuites/sptests/spqreslib') diff --git a/testsuites/sptests/spqreslib/task_periodic.c b/testsuites/sptests/spqreslib/task_periodic.c index 61bc0bb327..b219514724 100644 --- a/testsuites/sptests/spqreslib/task_periodic.c +++ b/testsuites/sptests/spqreslib/task_periodic.c @@ -100,12 +100,12 @@ rtems_task Task_Periodic( if ( rtems_rate_monotonic_period(rmid, Period) == RTEMS_TIMEOUT ) printf( "P%" PRIdPTR " - Deadline miss\n", argument ); - rtems_clock_get( RTEMS_CLOCK_GET_TICKS_SINCE_BOOT, &start ); + start = rtems_clock_get_ticks_since_boot(); printf( "P%" PRIdPTR "-S ticks:%d\n", argument, start ); if ( start > 4*Period+Phase ) break; /* stop */ /* active computing */ while(FOREVER) { - rtems_clock_get( RTEMS_CLOCK_GET_TICKS_SINCE_BOOT, &now ); + now = rtems_clock_get_ticks_since_boot(); if ( now >= start + Execution ) break; if ( qres_get_exec_time( server_id, &exec_time, &abs_time ) ) @@ -117,7 +117,7 @@ rtems_task Task_Periodic( rtems_test_exit( 0 ); } } - rtems_clock_get( RTEMS_CLOCK_GET_TICKS_SINCE_BOOT, &stop ); + stop = rtems_clock_get_ticks_since_boot(); printf( "P%" PRIdPTR "-F ticks:%d\n", argument, stop ); } -- cgit v1.2.3