Changeset 107809 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jan 16, 2025 10:42:42 AM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 166964
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMDevMiscHlp.cpp
r107227 r107809 69 69 #ifdef VBOX_VMM_TARGET_X86 70 70 PVMCPU pVCpu = pVM->apCpusR3[0]; /* for PIC we always deliver to CPU 0, SMP uses APIC */ 71 PDMApicSetLocalInterrupt(pVCpu, 0 /* u8Pin */, 1 /* u8Level */, VINF_SUCCESS /* rcRZ */); 71 if (pVM->pdm.s.Ic.pDevInsR3) 72 PDMApicSetLocalInterrupt(pVCpu, 0 /* u8Pin */, 1 /* u8Level */, VINF_SUCCESS /* rcRZ */); 73 else 74 VMCPU_FF_SET(pVCpu, VMCPU_FF_INTERRUPT_PIC); 72 75 #else 73 76 AssertReleaseFailed(); … … 88 91 #ifdef VBOX_VMM_TARGET_X86 89 92 PVMCPU pVCpu = pVM->apCpusR3[0]; /* for PIC we always deliver to CPU 0, SMP uses APIC */ 90 PDMApicSetLocalInterrupt(pVCpu, 0 /* u8Pin */, 0 /* u8Level */, VINF_SUCCESS /* rcRZ */); 93 if (pVM->pdm.s.Ic.pDevInsR3) 94 PDMApicSetLocalInterrupt(pVCpu, 0 /* u8Pin */, 0 /* u8Level */, VINF_SUCCESS /* rcRZ */); 95 else 96 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_PIC); 91 97 #else 92 98 AssertReleaseFailed();
Note:
See TracChangeset
for help on using the changeset viewer.