Changeset 26662 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Feb 19, 2010 3:11:13 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r26654 r26662 621 621 622 622 pCPUM->aGuestCpuIdStd[5].ecx = pCPUM->aGuestCpuIdStd[5].edx = 0; 623 /** @cfgm{/CPUM/MWaitExtensions, boolean, false} 624 * Expose MWAIT extended features to the guest. 625 * For now we expose just MWAIT break on interrupt feature (bit 1) 626 */ 627 bool fMWaitExtensions; 628 rc = CFGMR3QueryBoolDef(pCpumCfg, "MWaitExtensions", &fMWaitExtensions, false); AssertRCReturn(rc, rc); 629 if (fMWaitExtensions) 630 pCPUM->aGuestCpuIdStd[5].ecx = 3; 623 631 624 632 /*
Note:
See TracChangeset
for help on using the changeset viewer.