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 71943c04..f5ed7353 100644
--- a/kern/thread.c
+++ b/kern/thread.c
@@ -2690,7 +2690,7 @@ thread_delay(uint64_t ticks, bool absolute)
}
static void __init
-thread_boot_barrier(void)
+thread_boot_barrier_wait(void)
{
unsigned int nr_cpus;
@@ -2717,7 +2717,7 @@ thread_run_scheduler(void)
assert(!cpu_intr_enabled());
- thread_boot_barrier();
+ thread_boot_barrier_wait();
runq = thread_runq_local();
thread = thread_self();