Changeset 108429 in vbox for trunk/src/VBox/VMM/VMMAll/GICAll.cpp
- Timestamp:
- Mar 4, 2025 8:28:24 AM (7 weeks ago)
- svn:sync-xref-src-repo-rev:
- 167803
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/GICAll.cpp
r108428 r108429 1610 1610 DECL_FORCE_INLINE(VMCPUID) gicGetCpuIdFromAffinity(uint8_t idCpuInterface, uint8_t uAff1, uint8_t uAff2, uint8_t uAff3) 1611 1611 { 1612 AssertReturn(idCpuInterface < 16, VERR_INVALID_PARAMETER);1612 AssertReturn(idCpuInterface < 16, 0); 1613 1613 return (uAff3 * 1048576) + (uAff2 * 4096) + (uAff1 * 16) + idCpuInterface; 1614 1614 }
Note:
See TracChangeset
for help on using the changeset viewer.