diff options
author | Richard Braun <rbraun@sceen.net> | 2013-03-08 00:38:14 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2013-03-08 00:38:14 +0100 |
commit | 5377570ed371072725f725137108c6e4fe60c2a2 (patch) | |
tree | 96a0d3655b04a5f37ab214fd1dab75e2f6f373ba | |
parent | ee0e1e808f20108844cc12f9bf61172f705ac0d0 (diff) |
kern/thread: minor name change
-rw-r--r-- | kern/thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/thread.c b/kern/thread.c index a632bdce..e6365f8f 100644 --- a/kern/thread.c +++ b/kern/thread.c @@ -177,7 +177,7 @@ thread_runq_init_ts(struct thread_runq *runq) } static void __init -thread_runq_init_idler(struct thread_runq *runq) +thread_runq_init_idle(struct thread_runq *runq) { struct thread *idler; @@ -197,7 +197,7 @@ thread_runq_init(struct thread_runq *runq) spinlock_init(&runq->lock); thread_runq_init_rt(runq); thread_runq_init_ts(runq); - thread_runq_init_idler(runq); + thread_runq_init_idle(runq); runq->current = runq->idler; } |