Changeset 7988 in vbox for trunk/src/VBox/VMM/CPUM.cpp
- Timestamp:
- Apr 15, 2008 1:29:51 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r7987 r7988 407 407 408 408 /* Check if PAE was explicitely enabled by the user. */ 409 PCFGMNODE pNode = CFGMR3GetChildF(CFGMR3GetRoot(pVM), "CPUM/CPUID"); 410 if (pNode) 411 { 412 bool fEnable; 413 int rc = CFGMR3QueryBool(pNode, "EnablePAE", &fEnable); 414 if (VBOX_SUCCESS(rc) && fEnable) 415 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_PAE); 416 } 409 bool fEnable = false; 410 int rc = CFGMR3QueryBool(CFGMR3GetRoot(pVM), "EnablePAE", &fEnable); 411 if (VBOX_SUCCESS(rc) && fEnable) 412 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_PAE); 417 413 418 414 /*
Note:
See TracChangeset
for help on using the changeset viewer.