2010-06-12 Ralf Corsépius <ralf.corsepius@rtems.org>

* score/include/rtems/score/timestamp.h,
	score/include/rtems/score/timestamp64.h,
	score/include/rtems/score/watchdog.h:
	Misc. doxygen fixes.
This commit is contained in:
Ralf Corsepius
2010-06-12 05:56:26 +00:00
parent 5836747566
commit 48e77eb9ac
4 changed files with 14 additions and 7 deletions

View File

@@ -1,3 +1,10 @@
2010-06-12 Ralf Corsépius <ralf.corsepius@rtems.org>
* score/include/rtems/score/timestamp.h,
score/include/rtems/score/timestamp64.h,
score/include/rtems/score/watchdog.h:
Misc. doxygen fixes.
2010-06-12 Ralf Corsépius <ralf.corsepius@rtems.org> 2010-06-12 Ralf Corsépius <ralf.corsepius@rtems.org>
* posix/include/devctl.h: Move mal-placed @file. * posix/include/devctl.h: Move mal-placed @file.

View File

@@ -297,8 +297,8 @@ extern "C" {
* This routine converts the @a _ticks value to the corresponding * This routine converts the @a _ticks value to the corresponding
* timestamp format @a _time. * timestamp format @a _time.
* *
* @param[in] time points to the timestamp format time result * @param[in] _time points to the timestamp format time result
* @param[in] ticks points to the number of ticks to be filled in * @param[in] _ticks points to the number of ticks to be filled in
*/ */
#if defined(CPU_RTEMS_SCORE_TIMESTAMP_IS_STRUCT_SPEC) #if defined(CPU_RTEMS_SCORE_TIMESTAMP_IS_STRUCT_SPEC)
#define _Timestamp_From_ticks( _ticks, _time ) \ #define _Timestamp_From_ticks( _ticks, _time ) \

View File

@@ -221,7 +221,7 @@ static inline uint32_t _Timestamp64_Add_to_at_tick(
* @return This method returns the number of ticks computed. * @return This method returns the number of ticks computed.
*/ */
uint32_t _Timestamp64_To_ticks( uint32_t _Timestamp64_To_ticks(
const Timestamp64_Control *time const Timestamp64_Control *_time
); );
/** @brief Convert Ticks to Timestamp /** @brief Convert Ticks to Timestamp
@@ -229,8 +229,8 @@ uint32_t _Timestamp64_To_ticks(
* This routine converts the @a _ticks value to the corresponding * This routine converts the @a _ticks value to the corresponding
* timestamp format @a _time. * timestamp format @a _time.
* *
* @param[in] time points to the timestamp format time result * @param[in] _time points to the timestamp format time result
* @param[in] ticks points to the number of ticks to be filled in * @param[in] _ticks points to the number of ticks to be filled in
*/ */
void _Timestamp64_From_ticks( void _Timestamp64_From_ticks(
uint32_t _ticks, uint32_t _ticks,

View File

@@ -226,7 +226,7 @@ void _Watchdog_Adjust (
* @a direction for @a units_arg ticks. * @a direction for @a units_arg ticks.
* *
* @param[in] header is the watchdog chain to adjust * @param[in] header is the watchdog chain to adjust
* @param[in] units is the number of units to adjust @a header * @param[in] units_arg is the number of units to adjust @a header
* @param[in] to_fire is a pointer to an initialized Chain_Control to which * @param[in] to_fire is a pointer to an initialized Chain_Control to which
* all watchdog instances that are to be fired will be placed. * all watchdog instances that are to be fired will be placed.
* *
@@ -291,7 +291,7 @@ void _Watchdog_Report(
* *
* @param[in] name is a string to prefix the line with. If NULL, * @param[in] name is a string to prefix the line with. If NULL,
* nothing is printed. * nothing is printed.
* @param[in] watch is the watchdog chain to be printed. * @param[in] header is the watchdog chain to be printed.
* *
* @note This is a debug routine. It uses printk() and prudence should * @note This is a debug routine. It uses printk() and prudence should
* exercised when using it. It also disables interrupts so the * exercised when using it. It also disables interrupts so the