summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/ticker/tasks.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-12 20:50:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-12 20:50:38 +0000
commit99f0971146d4e621dbb7e242d7f5e3eb382a5ff9 (patch)
tree19f22c4c0a32c909296b4989f2d2e51cab3d5ad7 /testsuites/samples/ticker/tasks.c
parent2009-08-12 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-99f0971146d4e621dbb7e242d7f5e3eb382a5ff9.tar.bz2
2009-08-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* cdtest/main.cc, fileio/init.c, fileio/system.h, pppd/pppdapp.c, ticker/system.h, ticker/tasks.c: Eliminate test routines TICKS_PER_SECOND and get_ticks_per_second() in favor of new rtems_clock_get_ticks_per_second().
Diffstat (limited to 'testsuites/samples/ticker/tasks.c')
-rw-r--r--testsuites/samples/ticker/tasks.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/testsuites/samples/ticker/tasks.c b/testsuites/samples/ticker/tasks.c
index fabdbf7218..2d6c2e0f8e 100644
--- a/testsuites/samples/ticker/tasks.c
+++ b/testsuites/samples/ticker/tasks.c
@@ -7,7 +7,7 @@
*
* Output parameters: NONE
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -38,6 +38,7 @@ rtems_task Test_task(
}
put_name( Task_name[ task_index ], FALSE );
print_time( " - rtems_clock_get_tod - ", &time, "\n" );
- status = rtems_task_wake_after( task_index * 5 * get_ticks_per_second() );
+ status = rtems_task_wake_after(
+ task_index * 5 * rtems_clock_get_ticks_per_second() );
}
}