Changeset 107118 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Nov 22, 2024 11:32:14 AM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 166086
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAllApic.cpp
r107117 r107118 261 261 */ 262 262 VMM_INT_DECL(int) PDMApicBusDeliver(PVMCC pVM, uint8_t uDest, uint8_t uDestMode, uint8_t uDeliveryMode, uint8_t uVector, 263 uint8_t uPolarity, uint8_t uTriggerMode, uint32_t u TagSrc)263 uint8_t uPolarity, uint8_t uTriggerMode, uint32_t uSrcTag) 264 264 { 265 265 AssertReturn(PDM_TO_APICBACKEND(pVM)->pfnBusDeliver, VERR_INVALID_POINTER); 266 266 return PDM_TO_APICBACKEND(pVM)->pfnBusDeliver(pVM, uDest, uDestMode, uDeliveryMode, uVector, uPolarity, uTriggerMode, 267 u TagSrc);267 uSrcTag); 268 268 } 269 269
Note:
See TracChangeset
for help on using the changeset viewer.