summaryrefslogtreecommitdiffstats
path: root/testsuites/mptests/mp13
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-30 17:04:36 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-30 17:04:36 +0000
commitef89926a5dc78cdedc4706b5f73b21306a787733 (patch)
tree06c653b5860d840ebcac950b8116ff7bb4aec883 /testsuites/mptests/mp13
parent2009-10-30 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-ef89926a5dc78cdedc4706b5f73b21306a787733.tar.bz2
2009-10-30 Joel Sherrill <joel.sherrill@oarcorp.com>
* mp03/task1.c, mp10/init.c, mp13/task1.c: Use rtems_clock_get_ticks_per_second() instead of the obsoleted TICKS_PER_SECOND.
Diffstat (limited to 'testsuites/mptests/mp13')
-rw-r--r--testsuites/mptests/mp13/task1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/mptests/mp13/task1.c b/testsuites/mptests/mp13/task1.c
index 08c1485a9d..e619f9237c 100644
--- a/testsuites/mptests/mp13/task1.c
+++ b/testsuites/mptests/mp13/task1.c
@@ -61,7 +61,7 @@ rtems_task Test_task1(
(long (*)[4])receive_buffer,
&size,
RTEMS_DEFAULT_OPTIONS,
- 2 * TICKS_PER_SECOND
+ 2 * rtems_clock_get_ticks_per_second()
);
fatal_directive_status(status, RTEMS_TIMEOUT, "rtems_message_queue_receive");
puts( "rtems_message_queue_receive correctly returned RTEMS_TIMEOUT" );