Changeset 65338 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jan 16, 2017 2:11:15 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112919
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAll.cpp
r64852 r65338 180 180 { 181 181 Assert(pVM->pdm.s.IoApic.CTX_SUFF(pfnSetIrq)); 182 #ifdef VBOX_WITH_NEW_IOAPIC183 182 pVM->pdm.s.IoApic.CTX_SUFF(pfnSetIrq)(pVM->pdm.s.IoApic.CTX_SUFF(pDevIns), u8Irq, u8Level, uTagSrc); 184 #else185 pdmLock(pVM);186 pVM->pdm.s.IoApic.CTX_SUFF(pfnSetIrq)(pVM->pdm.s.IoApic.CTX_SUFF(pDevIns), u8Irq, u8Level, uTagSrc);187 pdmUnlock(pVM);188 #endif189 183 return VINF_SUCCESS; 190 184 } … … 229 223 { 230 224 Assert(pVM->pdm.s.IoApic.CTX_SUFF(pfnSendMsi)); 231 #ifdef VBOX_WITH_NEW_IOAPIC232 225 pVM->pdm.s.IoApic.CTX_SUFF(pfnSendMsi)(pVM->pdm.s.IoApic.CTX_SUFF(pDevIns), GCAddr, uValue, uTagSrc); 233 #else234 pdmLock(pVM);235 pVM->pdm.s.IoApic.CTX_SUFF(pfnSendMsi)(pVM->pdm.s.IoApic.CTX_SUFF(pDevIns), GCAddr, uValue, uTagSrc);236 pdmUnlock(pVM);237 #endif238 226 return VINF_SUCCESS; 239 227 }
Note:
See TracChangeset
for help on using the changeset viewer.