2008-04-30 Joel Sherrill <joel.sherrill@oarcorp.com>

* rtems/include/rtems/rtems/timer.h: Fix typo.
This commit is contained in:
Joel Sherrill
2008-04-30 16:14:16 +00:00
parent 9bb08afeff
commit fb8194045a
2 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2008-04-30 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/include/rtems/rtems/timer.h: Fix typo.
2008-04-28 Joel Sherrill <joel.sherrill@oarcorp.com> 2008-04-28 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/include/rtems.h, rtems/include/rtems/rtems/ratemon.h, * rtems/include/rtems.h, rtems/include/rtems/rtems/ratemon.h,

View File

@@ -313,10 +313,16 @@ rtems_status_code rtems_timer_get_information(
extern Watchdog_Control _Timer_Seconds_timer; extern Watchdog_Control _Timer_Seconds_timer;
/** /**
* This method is used to temporaril * This method is used to temporarily disable updates to the
* Ticks Timer Chain managed by the Timer Server.
*/
#define _Timer_Server_stop_ticks_timer() \ #define _Timer_Server_stop_ticks_timer() \
_Watchdog_Remove( &_Timer_Server->Timer ) _Watchdog_Remove( &_Timer_Server->Timer )
/**
* This method is used to temporarily disable updates to the
* Seconds Timer Chain managed by the Timer Server.
*/
#define _Timer_Server_stop_seconds_timer() \ #define _Timer_Server_stop_seconds_timer() \
_Watchdog_Remove( &_Timer_Seconds_timer ); _Watchdog_Remove( &_Timer_Seconds_timer );