Changeset 18927 in vbox for trunk/src/VBox/VMM/PDMDevMiscHlp.cpp
- Timestamp:
- Apr 16, 2009 11:41:38 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 46003
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMDevMiscHlp.cpp
r13820 r18927 53 53 /* for PIC we always deliver to CPU 0, MP use APIC */ 54 54 VMCPU_FF_SET(pVM, 0, VM_FF_INTERRUPT_PIC); 55 REMR3NotifyInterruptSet(pVM );55 REMR3NotifyInterruptSet(pVM, VMMGetCpu(pVM)); 56 56 VMR3NotifyFF(pVM, true); /** @todo SMP: notify the right cpu. */ 57 57 } … … 67 67 /* for PIC we always deliver to CPU 0, MP use APIC */ 68 68 VMCPU_FF_CLEAR(pDevIns->Internal.s.pVMR3, 0, VM_FF_INTERRUPT_PIC); 69 REMR3NotifyInterruptClear(pDevIns->Internal.s.pVMR3 );69 REMR3NotifyInterruptClear(pDevIns->Internal.s.pVMR3, VMMGetCpu(pDevIns->Internal.s.pVMR3)); 70 70 } 71 71 … … 150 150 151 151 VMCPU_FF_SET(pVM, idCpu, VM_FF_INTERRUPT_APIC); 152 REMR3NotifyInterruptSet(pVM );152 REMR3NotifyInterruptSet(pVM, VMMGetCpu(pVM)); 153 153 VMR3NotifyFF(pVM, true); /** @todo SMP: notify the right cpu. */ 154 154 } … … 163 163 164 164 VMCPU_FF_CLEAR(pDevIns->Internal.s.pVMR3, idCpu, VM_FF_INTERRUPT_APIC); 165 REMR3NotifyInterruptClear(pDevIns->Internal.s.pVMR3 );165 REMR3NotifyInterruptClear(pDevIns->Internal.s.pVMR3, VMMGetCpu(pDevIns->Internal.s.pVMR3)); 166 166 } 167 167
Note:
See TracChangeset
for help on using the changeset viewer.