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

* tm08/task1.c: Convert calls to legacy routine rtems_clock_get(
	RTEMS_CLOCK_GET_TOD, ..) to rtems_clock_get_tod(..).
This commit is contained in:
Joel Sherrill
2009-08-10 14:49:56 +00:00
parent bcf16c034d
commit ec5c898b41
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2009-08-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* tm08/task1.c: Convert calls to legacy routine rtems_clock_get(
RTEMS_CLOCK_GET_TOD, ..) to rtems_clock_get_tod(..).
2009-04-03 Ralf Corsépius <ralf.corsepius@rtems.org>
* tm01/Makefile.am, tm02/Makefile.am, tm03/Makefile.am,

View File

@@ -225,11 +225,11 @@ rtems_task test_task(
benchmark_timer_initialize();
for ( index=1 ; index <= OPERATION_COUNT ; index++ )
(void) rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
(void) rtems_clock_get_tod( &time );
end_time = benchmark_timer_read();
put_time(
"rtems_clock_get",
"rtems_clock_get_tod",
end_time,
OPERATION_COUNT,
overhead,