Changeset 49058 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Oct 11, 2013 3:51:50 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 89856
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r49028 r49058 1885 1885 fPAE(false), 1886 1886 enmLongMode(HC_ARCH_BITS == 64 ? Hardware::LongMode_Enabled : Hardware::LongMode_Disabled), 1887 fTripleFaultReset(false), 1887 1888 cCPUs(1), 1888 1889 fCpuHotPlug(false), … … 1955 1956 && (fPAE == h.fPAE) 1956 1957 && (enmLongMode == h.enmLongMode) 1958 && (fTripleFaultReset == h.fTripleFaultReset) 1957 1959 && (cCPUs == h.cCPUs) 1958 1960 && (fCpuHotPlug == h.fCpuHotPlug) … … 2712 2714 if ((pelmCPUChild = pelmHwChild->findChildElement("SyntheticCpu"))) 2713 2715 pelmCPUChild->getAttributeValue("enabled", hw.fSyntheticCpu); 2716 2717 if ((pelmCPUChild = pelmHwChild->findChildElement("TripleFaultReset"))) 2718 pelmCPUChild->getAttributeValue("enabled", hw.fTripleFaultReset); 2719 2714 2720 if ((pelmCPUChild = pelmHwChild->findChildElement("CpuIdTree"))) 2715 2721 readCpuIdTree(*pelmCPUChild, hw.llCpuIdLeafs); … … 3957 3963 if (hw.fSyntheticCpu) 3958 3964 pelmCPU->createChild("SyntheticCpu")->setAttribute("enabled", hw.fSyntheticCpu); 3965 if (hw.fTripleFaultReset) 3966 pelmCPU->createChild("TripleFaultReset")->setAttribute("enabled", hw.fTripleFaultReset); 3959 3967 pelmCPU->setAttribute("count", hw.cCPUs); 3960 3968 if (hw.ulCpuExecutionCap != 100)
Note:
See TracChangeset
for help on using the changeset viewer.