2009-08-10 Joel Sherrill <joel.sherrill@oarcorp.com>

* fileio/system.h, ticker/system.h, ticker/ticker.scn: Convert calls to
	legacy routine rtems_clock_get( RTEMS_CLOCK_GET_xxx, ..) to
	rtems_clock_get_xxx().
This commit is contained in:
Joel Sherrill
2009-08-10 16:05:17 +00:00
parent de90869d97
commit f6ef96c273
4 changed files with 22 additions and 19 deletions
+6
View File
@@ -1,3 +1,9 @@
2009-08-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* fileio/system.h, ticker/system.h, ticker/ticker.scn: Convert calls to
legacy routine rtems_clock_get( RTEMS_CLOCK_GET_xxx, ..) to
rtems_clock_get_xxx().
2009-08-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* ticker/tasks.c: Convert calls to legacy routine rtems_clock_get(
+1 -2
View File
@@ -106,8 +106,7 @@ rtems_task Init(
static inline uint32_t get_ticks_per_second( void )
{
rtems_interval ticks_per_second;
(void) rtems_clock_get( RTEMS_CLOCK_GET_TICKS_PER_SECOND, &ticks_per_second ); return ticks_per_second;
return rtems_clock_get_ticks_per_second();
}
+1 -3
View File
@@ -94,11 +94,9 @@ extern rtems_name Task_name[ 4 ]; /* array of task names */
static inline uint32_t get_ticks_per_second( void )
{
rtems_interval ticks_per_second;
(void) rtems_clock_get( RTEMS_CLOCK_GET_TICKS_PER_SECOND, &ticks_per_second ); return ticks_per_second;
return rtems_clock_get_ticks_per_second();
}
/*
* This allows us to view the "Test_task" instantiations as a set
* of numbered tasks by eliminating the number of application
+14 -14
View File
@@ -1,16 +1,16 @@
*** CLOCK TICK TEST ***
TA1 - tm_get - 09:00:00 12/31/1988
TA2 - tm_get - 09:00:00 12/31/1988
TA3 - tm_get - 09:00:00 12/31/1988
TA1 - tm_get - 09:00:05 12/31/1988
TA1 - tm_get - 09:00:10 12/31/1988
TA2 - tm_get - 09:00:10 12/31/1988
TA1 - tm_get - 09:00:15 12/31/1988
TA3 - tm_get - 09:00:15 12/31/1988
TA1 - tm_get - 09:00:20 12/31/1988
TA2 - tm_get - 09:00:20 12/31/1988
TA1 - tm_get - 09:00:25 12/31/1988
TA1 - tm_get - 09:00:30 12/31/1988
TA2 - tm_get - 09:00:30 12/31/1988
TA3 - tm_get - 09:00:30 12/31/1988
TA1 - clock_get_tod - 09:00:00 12/31/1988
TA2 - clock_get_tod - 09:00:00 12/31/1988
TA3 - clock_get_tod - 09:00:00 12/31/1988
TA1 - clock_get_tod - 09:00:05 12/31/1988
TA1 - clock_get_tod - 09:00:10 12/31/1988
TA2 - clock_get_tod - 09:00:10 12/31/1988
TA1 - clock_get_tod - 09:00:15 12/31/1988
TA3 - clock_get_tod - 09:00:15 12/31/1988
TA1 - clock_get_tod - 09:00:20 12/31/1988
TA2 - clock_get_tod - 09:00:20 12/31/1988
TA1 - clock_get_tod - 09:00:25 12/31/1988
TA1 - clock_get_tod - 09:00:30 12/31/1988
TA2 - clock_get_tod - 09:00:30 12/31/1988
TA3 - clock_get_tod - 09:00:30 12/31/1988
*** END OF CLOCK TICK TEST ***