Changes in kernel/generic/src/main/main.c [2e4343b:95d45482] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/main/main.c
r2e4343b r95d45482 78 78 #include <synch/waitq.h> 79 79 #include <synch/futex.h> 80 #include <synch/workqueue.h>81 #include <smp/smp_call.h>82 80 #include <arch/arch.h> 83 81 #include <arch.h> … … 173 171 ALIGN_UP((uintptr_t) kdata_end - config.base, PAGE_SIZE); 174 172 175 // XXX: All kernel stacks must be aligned to STACK_SIZE,176 // see get_stack_base().173 // NOTE: All kernel stacks must be aligned to STACK_SIZE, 174 // see get_stack_base(). 177 175 178 176 /* Place the stack after the kernel, init and ballocs. */ … … 274 272 ARCH_OP(post_cpu_init); 275 273 276 smp_call_init();277 workq_global_init();278 274 clock_counter_init(); 279 275 timeout_init(); … … 381 377 void main_ap_separated_stack(void) 382 378 { 383 smp_call_init();384 385 379 /* 386 380 * Configure timeouts for this cpu.
Note:
See TracChangeset
for help on using the changeset viewer.