summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-04-30 16:14:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-04-30 16:14:16 +0000
commitfb8194045af835830f701115a4247043853cb9e6 (patch)
treec8ed031422e826064ef0f20a09abb7beb4e19ea2 /cpukit
parentImprovements for gdb-6.6/6.7 (diff)
downloadrtems-fb8194045af835830f701115a4247043853cb9e6.tar.bz2
2008-04-30 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/include/rtems/rtems/timer.h: Fix typo.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/rtems/include/rtems/rtems/timer.h8
2 files changed, 11 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 92279765eb..f440697764 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -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>
* rtems/include/rtems.h, rtems/include/rtems/rtems/ratemon.h,
diff --git a/cpukit/rtems/include/rtems/rtems/timer.h b/cpukit/rtems/include/rtems/rtems/timer.h
index e1e0b7c0bc..d474660af9 100644
--- a/cpukit/rtems/include/rtems/rtems/timer.h
+++ b/cpukit/rtems/include/rtems/rtems/timer.h
@@ -313,10 +313,16 @@ rtems_status_code rtems_timer_get_information(
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() \
_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() \
_Watchdog_Remove( &_Timer_Seconds_timer );