Changeset 61685 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jun 13, 2016 4:04:42 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108043
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAll.cpp
r60804 r61685 194 194 { 195 195 Assert(pVM->pdm.s.IoApic.CTX_SUFF(pfnSetIrq)); 196 #ifdef VBOX_WITH_NEW_IOAPIC 197 pVM->pdm.s.IoApic.CTX_SUFF(pfnSetIrq)(pVM->pdm.s.IoApic.CTX_SUFF(pDevIns), u8Irq, u8Level, uTagSrc); 198 #else 196 199 pdmLock(pVM); 197 200 pVM->pdm.s.IoApic.CTX_SUFF(pfnSetIrq)(pVM->pdm.s.IoApic.CTX_SUFF(pDevIns), u8Irq, u8Level, uTagSrc); 198 201 pdmUnlock(pVM); 202 #endif 199 203 return VINF_SUCCESS; 200 204 } … … 216 220 { 217 221 Assert(pVM->pdm.s.IoApic.CTX_SUFF(pfnSendMsi)); 222 #ifdef VBOX_WITH_NEW_IOAPIC 223 pVM->pdm.s.IoApic.CTX_SUFF(pfnSendMsi)(pVM->pdm.s.IoApic.CTX_SUFF(pDevIns), GCAddr, uValue, uTagSrc); 224 #else 218 225 pdmLock(pVM); 219 226 pVM->pdm.s.IoApic.CTX_SUFF(pfnSendMsi)(pVM->pdm.s.IoApic.CTX_SUFF(pDevIns), GCAddr, uValue, uTagSrc); 220 227 pdmUnlock(pVM); 228 #endif 221 229 return VINF_SUCCESS; 222 230 }
Note:
See TracChangeset
for help on using the changeset viewer.