Changeset 107113 in vbox for trunk/src/VBox/VMM/VMMAll/CPUMAllMsrs.cpp
- Timestamp:
- Nov 22, 2024 10:48:00 AM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 166080
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllMsrs.cpp
r106061 r107113 32 32 #define LOG_GROUP LOG_GROUP_CPUM 33 33 #include <VBox/vmm/cpum.h> 34 #include <VBox/vmm/ apic.h>34 #include <VBox/vmm/pdmapic.h> 35 35 #include <VBox/vmm/hm.h> 36 36 #include <VBox/vmm/hm_vmx.h> … … 235 235 { 236 236 RT_NOREF_PV(idMsr); RT_NOREF_PV(pRange); 237 return APICGetBaseMsr(pVCpu, puValue);237 return PDMApicGetBaseMsr(pVCpu, puValue); 238 238 } 239 239 … … 243 243 { 244 244 RT_NOREF_PV(pVCpu); RT_NOREF_PV(idMsr); RT_NOREF_PV(pRange); RT_NOREF_PV(uValue); RT_NOREF_PV(uRawValue); 245 return APICSetBaseMsr(pVCpu, uValue);245 return PDMApicSetBaseMsr(pVCpu, uValue); 246 246 } 247 247 … … 1347 1347 } 1348 1348 #endif 1349 return APICReadMsr(pVCpu, idMsr, puValue);1349 return PDMApicReadMsr(pVCpu, idMsr, puValue); 1350 1350 } 1351 1351 … … 1367 1367 } 1368 1368 #endif 1369 return APICWriteMsr(pVCpu, idMsr, uValue);1369 return PDMApicWriteMsr(pVCpu, idMsr, uValue); 1370 1370 } 1371 1371
Note:
See TracChangeset
for help on using the changeset viewer.