summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kern/thread.c4
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;
}