summaryrefslogtreecommitdiffstats
path: root/testsuites/samples
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
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')
-rw-r--r--testsuites/samples/ChangeLog6
-rw-r--r--testsuites/samples/fileio/system.h3
-rw-r--r--testsuites/samples/ticker/system.h4
-rw-r--r--testsuites/samples/ticker/ticker.scn28
4 files changed, 22 insertions, 19 deletions
diff --git a/testsuites/samples/ChangeLog b/testsuites/samples/ChangeLog
index 44dc8fcf6e..16f7746405 100644
--- a/testsuites/samples/ChangeLog
+++ b/testsuites/samples/ChangeLog
@@ -1,5 +1,11 @@
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(
RTEMS_CLOCK_GET_TOD, ..) to rtems_clock_get_tod(..).
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();
}
diff --git a/testsuites/samples/ticker/system.h b/testsuites/samples/ticker/system.h
index 4f72faa49d..a87ba2c901 100644
--- a/testsuites/samples/ticker/system.h
+++ b/testsuites/samples/ticker/system.h
@@ -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
diff --git a/testsuites/samples/ticker/ticker.scn b/testsuites/samples/ticker/ticker.scn
index 35952e6170..b1a434abb6 100644
--- a/testsuites/samples/ticker/ticker.scn
+++ b/testsuites/samples/ticker/ticker.scn
@@ -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 ***