Changeset b1c57a8 in mainline for kernel/generic/src/main
- Timestamp:
- 2014-10-09T15:03:55Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e367939c
- Parents:
- 21799398 (diff), 207e8880 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- kernel/generic/src/main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/main/kinit.c
r21799398 rb1c57a8 79 79 #include <synch/waitq.h> 80 80 #include <synch/spinlock.h> 81 #include <synch/workqueue.h> 82 #include <synch/rcu.h> 81 83 82 84 #define ALIVE_CHARS 4 … … 105 107 */ 106 108 thread_detach(THREAD); 107 109 108 110 interrupts_disable(); 111 112 /* Start processing RCU callbacks. RCU is fully functional afterwards. */ 113 rcu_kinit_init(); 114 115 /* 116 * Start processing work queue items. Some may have been queued during boot. 117 */ 118 workq_global_worker_init(); 109 119 110 120 #ifdef CONFIG_SMP -
kernel/generic/src/main/main.c
r21799398 rb1c57a8 76 76 #include <synch/waitq.h> 77 77 #include <synch/futex.h> 78 #include <synch/workqueue.h> 79 #include <smp/smp_call.h> 78 80 #include <arch/arch.h> 79 81 #include <arch.h> … … 263 265 264 266 cpu_init(); 265 266 267 calibrate_delay_loop(); 268 arch_post_cpu_init(); 269 270 smp_call_init(); 271 workq_global_init(); 267 272 clock_counter_init(); 268 273 timeout_init(); … … 367 372 void main_ap_separated_stack(void) 368 373 { 374 smp_call_init(); 375 369 376 /* 370 377 * Configure timeouts for this cpu. -
kernel/generic/src/main/shutdown.c
r21799398 rb1c57a8 37 37 38 38 #include <arch.h> 39 #include <proc/task.h> 39 40 #include <func.h> 40 41 #include <print.h>
Note:
See TracChangeset
for help on using the changeset viewer.