]> Zhao Yanbai Git Server - minix.git/commitdiff
Fix by Al.
authorBen Gras <ben@minix3.org>
Wed, 14 Sep 2005 00:49:08 +0000 (00:49 +0000)
committerBen Gras <ben@minix3.org>
Wed, 14 Sep 2005 00:49:08 +0000 (00:49 +0000)
include/timers.h

index aa1b4960778e73f54c8334f013f7d38fc41a7793..8dbd135d0ea067f71c74e86073db89745bfba56b 100644 (file)
@@ -43,10 +43,10 @@ typedef struct timer
 #define tmr_arg(tp) (&(tp)->tmr_arg)
 #define tmr_exp_time(tp) (&(tp)->tmr_exp_time)
 
-/* Timers should be initialize once before they are being used. Be careful 
- * not the reinitialize a timer that is a list of timers, or the chain will 
- * be broken. 
- */ 
+/* Timers should be initialized once before they are being used. Be careful
+ * not to reinitialize a timer that is in a list of timers, or the chain
+ * will be broken.
+ */
 #define tmr_inittimer(tp) (void)((tp)->tmr_exp_time = TMR_NEVER, \
        (tp)->tmr_next = NULL)