Changeset ec04b20 in mainline for kernel/arch/ia32xen/src/ia32xen.c
- Timestamp:
- 2006-10-27T13:56:25Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 410ed0d
- Parents:
- 8607db8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32xen/src/ia32xen.c
r8607db8 rec04b20 62 62 #include <syscall/syscall.h> 63 63 #include <console/console.h> 64 #include <ddi/irq.h> 64 65 65 66 start_info_t start_info; … … 129 130 130 131 if (config.cpu_active == 1) { 132 interrupt_init(); 131 133 // bios_init(); 132 134 133 exc_register(VECTOR_SYSCALL, "syscall", (iroutine) syscall);134 135 #ifdef CONFIG_SMP136 exc_register(VECTOR_TLB_SHOOTDOWN_IPI, "tlb_shootdown",137 (iroutine) tlb_shootdown_ipi);138 #endif /* CONFIG_SMP */139 135 } 140 136 } … … 143 139 { 144 140 if (config.cpu_active == 1) { 145 /* video */ 141 /* Initialize IRQ routing */ 142 irq_init(IRQ_COUNT, IRQ_COUNT); 143 144 /* Video */ 146 145 xen_console_init(); 146 147 147 /* Enable debugger */ 148 148 debugger_init(); 149 149 150 /* Merge all memory zones to 1 big zone */ 150 151 zone_merge_all();
Note:
See TracChangeset
for help on using the changeset viewer.