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().
This commit is contained in:
Joel Sherrill
2009-08-12 20:50:51 +00:00
parent 1f7ee0275b
commit 4e76c71cd0
2 changed files with 7 additions and 10 deletions

View File

@@ -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 ); \