From 69faf01be81114b916226dda518b48a50f8d942f Mon Sep 17 00:00:00 2001 From: Richard Braun Date: Fri, 16 Aug 2019 20:13:34 +0200 Subject: kern/thread: rename thread_boot_barrier --- kern/thread.c | 4 ++-- 1 file 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(); -- cgit v1.2.3