Changeset 26678e5 in mainline for kernel/arch/ia32/src
- Timestamp:
- 2006-09-26T15:10:40Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 86b31ba9
- Parents:
- b44939b
- Location:
- kernel/arch/ia32/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/ia32.c
rb44939b r26678e5 63 63 #include <console/console.h> 64 64 65 #ifdef CONFIG_SMP 66 #include <arch/smp/apic.h> 67 #endif 68 65 69 void arch_pre_mm_init(void) 66 70 { … … 98 102 zone_merge_all(); 99 103 } 104 } 105 106 void arch_post_cpu_init() 107 { 108 #ifdef CONFIG_SMP 109 if (config.cpu_active > 1) { 110 l_apic_init(); 111 l_apic_debug(); 112 } 113 #endif 100 114 } 101 115 -
kernel/arch/ia32/src/smp/mps.c
rb44939b r26678e5 85 85 int l_intr_entry_cnt = 0; 86 86 87 waitq_t ap_completion_wq;88 89 87 /* 90 88 * Implementation of IA-32 SMP configuration interface. -
kernel/arch/ia32/src/smp/smp.c
rb44939b r26678e5 105 105 ASSERT(ops != NULL); 106 106 107 waitq_initialize(&ap_completion_wq);108 109 107 /* 110 108 * We need to access data in frame 0.
Note:
See TracChangeset
for help on using the changeset viewer.