Changeset 37932 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jul 13, 2011 8:46:49 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r37931 r37932 1847 1847 case 0xA: 1848 1848 if (mHWData->mCpuIdStdLeafs[aId].ulId != aId) 1849 return setError(E_INVALIDARG, tr("CpuId override leaf %#x is not set"), aId);1849 return E_INVALIDARG; 1850 1850 1851 1851 *aValEax = mHWData->mCpuIdStdLeafs[aId].ulEax; … … 1867 1867 case 0x8000000A: 1868 1868 if (mHWData->mCpuIdExtLeafs[aId - 0x80000000].ulId != aId) 1869 return setError(E_INVALIDARG, tr("CpuId override leaf %#x is not set"), aId);1869 return E_INVALIDARG; 1870 1870 1871 1871 *aValEax = mHWData->mCpuIdExtLeafs[aId - 0x80000000].ulEax;
Note:
See TracChangeset
for help on using the changeset viewer.