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