Changeset 107113 in vbox for trunk/src/VBox/VMM/VMMR3/GIMMinimal.cpp
- Timestamp:
- Nov 22, 2024 10:48:00 AM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/GIMMinimal.cpp
r106061 r107113 34 34 #include <VBox/vmm/cpum.h> 35 35 #include <VBox/vmm/tm.h> 36 #include <VBox/vmm/ apic.h>36 #include <VBox/vmm/pdmapic.h> 37 37 #include "GIMInternal.h" 38 38 #include <VBox/vmm/vm.h> … … 106 106 * 107 107 * This is done in the init. completed routine as we need PDM to be 108 * initialized (otherwise APICGetTimerFreq() would fail).108 * initialized (otherwise PDMApicGetTimerFreq() would fail). 109 109 */ 110 110 CPUMCPUIDLEAF HyperLeaf; … … 123 123 */ 124 124 uint64_t uApicFreq; 125 rc = APICGetTimerFreq(pVM, &uApicFreq);125 rc = PDMApicGetTimerFreq(pVM, &uApicFreq); 126 126 AssertLogRelRCReturn(rc, rc); 127 127
Note:
See TracChangeset
for help on using the changeset viewer.