aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2013-01-26 17:56:44 +0000
committerDimitri Sokolyuk <demon@dim13.org>2013-01-26 17:56:44 +0000
commit07915966c2c2dee5dcf335148767ff2632fe7d5e (patch)
tree40878aef78be27e4dcc392237e9b330da42fc306
parent16ebf6b6529a05603bb801c42b4bcc3df0105f71 (diff)
fix comment
-rw-r--r--kernel/kernel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/kernel.c b/kernel/kernel.c
index dc143a1..3fa2681 100644
--- a/kernel/kernel.c
+++ b/kernel/kernel.c
@@ -94,7 +94,7 @@ ISR(TIMER1_COMPB_vect, ISR_NAKED)
pusha();
- /* pick first RTR task and move him to tail of RQ */
+ /* pick the first RTR task and move it to tail of RQ */
if ((tp = TAILQ_FIRST(&kern.rq))) {
TAILQ_REMOVE(&kern.rq, tp, r_link);
TAILQ_INSERT_TAIL(&kern.rq, tp, r_link);