Changeset 76491 in vbox
- Timestamp:
- Dec 27, 2018 5:59:04 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/cpum.h
r76464 r76491 2213 2213 VMMR3DECL(int) CPUMR3Init(PVM pVM); 2214 2214 VMMR3DECL(int) CPUMR3InitCompleted(PVM pVM, VMINITCOMPLETED enmWhat); 2215 VMMR3DECL(void) CPUMR3LogCpuId s(PVM pVM);2215 VMMR3DECL(void) CPUMR3LogCpuIdAndMsrFeatures(PVM pVM); 2216 2216 VMMR3DECL(void) CPUMR3Relocate(PVM pVM); 2217 2217 VMMR3DECL(int) CPUMR3Term(PVM pVM); -
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r76490 r76491 3916 3916 * @param pVM The cross context VM structure. 3917 3917 */ 3918 VMMR3DECL(void) CPUMR3LogCpuId s(PVM pVM)3918 VMMR3DECL(void) CPUMR3LogCpuIdAndMsrFeatures(PVM pVM) 3919 3919 { 3920 3920 /* -
trunk/src/VBox/VMM/VMMR3/VMM.cpp
r75646 r76491 867 867 * CPUM's post-initialization (print CPUIDs). 868 868 */ 869 CPUMR3LogCpuId s(pVM);869 CPUMR3LogCpuIdAndMsrFeatures(pVM); 870 870 break; 871 871 }
Note:
See TracChangeset
for help on using the changeset viewer.