2008-12-16 Joel Sherrill <joel.sherrill@oarcorp.com>

* sapi/include/rtems/config.h: Remove commented out lines. Add macro
	for rtems_configuration_get_nanoseconds_per_tick().
This commit is contained in:
Joel Sherrill
2008-12-16 15:39:49 +00:00
parent cf53d16b6a
commit 2b9968add9
2 changed files with 7 additions and 6 deletions

View File

@@ -1,3 +1,8 @@
2008-12-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* sapi/include/rtems/config.h: Remove commented out lines. Add macro
for rtems_configuration_get_nanoseconds_per_tick().
2008-12-15 Joel Sherrill <joel.sherrill@oarcorp.com>
* itron/include/rtems/itron/itronapi.h, libmisc/capture/capture.c,

View File

@@ -57,12 +57,6 @@ typedef void *itron_api_configuration_table;
#include <rtems/rtems/config.h>
/* XXX <rtems/rtems/config.h> should cover these
#include <rtems/rtems/status.h>
#include <rtems/rtems/types.h>
#include <rtems/rtems/tasks.h>
*/
#include <rtems/extension.h>
#include <rtems/io.h>
#if defined(RTEMS_MULTIPROCESSING)
@@ -208,6 +202,8 @@ extern rtems_configuration_table Configuration;
(Configuration.microseconds_per_tick)
#define rtems_configuration_get_milliseconds_per_tick() \
(Configuration.microseconds_per_tick / 1000)
#define rtems_configuration_get_nanoseconds_per_tick() \
(Configuration.microseconds_per_tick * 1000)
#define rtems_configuration_get_ticks_per_timeslice() \
(Configuration.ticks_per_timeslice)