summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/fileio
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-10 16:05:17 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-10 16:05:17 +0000
commitf6ef96c2739580c6d91e7fadd22859c2910d4711 (patch)
tree5a2f2145efc932024850a5df3119f4cb68ae10f5 /testsuites/samples/fileio
parent2009-08-10 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-f6ef96c2739580c6d91e7fadd22859c2910d4711.tar.bz2
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().
Diffstat (limited to 'testsuites/samples/fileio')
-rw-r--r--testsuites/samples/fileio/system.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/testsuites/samples/fileio/system.h b/testsuites/samples/fileio/system.h
index 13b6ecb8c7..3620eacdb2 100644
--- a/testsuites/samples/fileio/system.h
+++ b/testsuites/samples/fileio/system.h
@@ -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();
}