Changeset 2ee1ccc in mainline for kernel/arch/amd64/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/amd64/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 /* … … 161 162 tlb_shootdown_ipi_recv(); 162 163 } 164 165 static void arch_smp_call_ipi_recv(unsigned int n, istate_t *istate) 166 { 167 trap_virtual_eoi(); 168 smp_call_ipi_recv(); 169 } 163 170 #endif 164 171 … … 222 229 exc_register(VECTOR_TLB_SHOOTDOWN_IPI, "tlb_shootdown", true, 223 230 (iroutine_t) tlb_shootdown_ipi); 231 exc_register(VECTOR_SMP_CALL_IPI, "smp_call", true, 232 (iroutine_t) arch_smp_call_ipi_recv); 224 233 #endif 225 234 }
Note:
See TracChangeset
for help on using the changeset viewer.