2008-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>

PR 1346/cpukit
	* rtems/include/rtems/rtems/ratemon.h: Sense of rate monotonic
	statistics nanoseconds or ticks granularity conditional is backwards.
This commit is contained in:
Joel Sherrill
2008-12-03 19:03:53 +00:00
parent c6016f15d6
commit 22629eeaa6
2 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2008-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1346/cpukit
* rtems/include/rtems/rtems/ratemon.h: Sense of rate monotonic
statistics nanoseconds or ticks granularity conditional is backwards.
2008-12-02 Joel Sherrill <joel.sherrill@OARcorp.com> 2008-12-02 Joel Sherrill <joel.sherrill@OARcorp.com>
* libcsupport/src/ttyname.c: Correct prototype of ttyname_r() to use * libcsupport/src/ttyname.c: Correct prototype of ttyname_r() to use

View File

@@ -55,7 +55,7 @@ extern "C" {
* The user can define this at configure time and go back to ticks * The user can define this at configure time and go back to ticks
* resolution. * resolution.
*/ */
#if defined(__RTEMS_USE_TICKS_RATE_MONOTONIC_STATISTICS__) #if !defined(__RTEMS_USE_TICKS_RATE_MONOTONIC_STATISTICS__)
/** /**
* Enable the nanosecond accurate statistics * Enable the nanosecond accurate statistics
* *
@@ -374,7 +374,7 @@ void _Rate_monotonic_Timeout(
); );
/** /**
* @brief _Rate_monotonic_Reset_statistics * @brief _Rate_monotonic_Reset_wall_time_statistics
* *
* This method resets the statistics information for a period instance. * This method resets the statistics information for a period instance.
*/ */