Changeset 81949 in vbox
- Timestamp:
- Nov 18, 2019 4:41:06 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134746
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevIoApic.cpp
r81948 r81949 397 397 * @param pThis The shared I/O APIC device state. 398 398 * @param pThisCC The I/O APIC device state for the current context. 399 * @param idxRte The index of the RTE .399 * @param idxRte The index of the RTE (validated). 400 400 * 401 401 * @remarks It is the responsibility of the caller to verify that an interrupt is … … 1058 1058 pHlp->pfnPrintf(pHlp, " idx dst_mode dst_addr mask irr trigger rirr polar dlvr_st dlvr_mode vector\n"); 1059 1059 1060 for (uint8_t idxRte = 0; idxRte <= pThis->u8MaxRte; idxRte++) 1060 uint8_t const idxMaxRte = RT_MIN(pThis->u8MaxRte, RT_ELEMENTS(pThis->au64RedirTable) - 1); 1061 for (uint8_t idxRte = 0; idxRte <= idxMaxRte; idxRte++) 1061 1062 { 1062 1063 static const char * const s_apszDeliveryModes[] =
Note:
See TracChangeset
for help on using the changeset viewer.