Changeset 2ee1ccc in mainline for kernel/arch/ia32/src/interrupt.c
- Timestamp:
- 2012-07-01T05:18:27Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d71331b
- Parents:
- 49e6c6b4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/interrupt.c
r49e6c6b4 r2ee1ccc 54 54 #include <symtab.h> 55 55 #include <stacktrace.h> 56 #include <smp/smp_call.h> 56 57 57 58 /* … … 170 171 tlb_shootdown_ipi_recv(); 171 172 } 173 174 static void arch_smp_call_ipi_recv(unsigned int n, istate_t *istate) 175 { 176 trap_virtual_eoi(); 177 smp_call_ipi_recv(); 178 } 172 179 #endif 173 180 … … 230 237 exc_register(VECTOR_TLB_SHOOTDOWN_IPI, "tlb_shootdown", true, 231 238 (iroutine_t) tlb_shootdown_ipi); 239 exc_register(VECTOR_SMP_CALL_IPI, "smp_call", true, 240 (iroutine_t) arch_smp_call_ipi_recv); 232 241 #endif 233 242 }
Note:
See TracChangeset
for help on using the changeset viewer.