summaryrefslogtreecommitdiffstats
path: root/testsuites/support/include/tmacros.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-12 20:50:51 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-12 20:50:51 +0000
commit4e76c71cd0a2b9f8a5f213c91355bbe2fd257375 (patch)
tree87710fa4c04999ff1c39957517d445d53ace90d6 /testsuites/support/include/tmacros.h
parent2009-08-12 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-4e76c71cd0a2b9f8a5f213c91355bbe2fd257375.tar.bz2
2009-08-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* support/include/tmacros.h: 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/support/include/tmacros.h')
-rw-r--r--testsuites/support/include/tmacros.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/testsuites/support/include/tmacros.h b/testsuites/support/include/tmacros.h
index 71792bd754..5623131550 100644
--- a/testsuites/support/include/tmacros.h
+++ b/testsuites/support/include/tmacros.h
@@ -3,7 +3,7 @@
* This include file contains macros which are useful in the RTEMS
* test suites.
*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -238,15 +238,6 @@ extern "C" {
rtems_configuration_get_rtems_api_configuration()-> \
number_of_initialization_tasks )
-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;
-}
-
-#define TICKS_PER_SECOND get_ticks_per_second()
-
#define rtems_test_assert(__exp) \
if (!(__exp)) { \
printf( "%s: %d %s\n", __FILE__, __LINE__, #__exp ); \