Changeset 34184 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 18, 2010 9:19:11 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67919
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/HWACCMInternal.h
r33540 r34184 321 321 struct 322 322 { 323 /** Set by the ring-0 driver to indicate VMX is supported by the CPU. */ 323 /** Set by the ring-0 side of HWACCM to indicate VMX is supported by the 324 * CPU. */ 324 325 bool fSupported; 325 326 … … 420 421 struct 421 422 { 422 /** Set by the ring-0 driver to indicate SVM is supported by the CPU. */ 423 /** Set by the ring-0 side of HWACCM to indicate SVM is supported by the 424 * CPU. */ 423 425 bool fSupported; 424 426 /** Set when we've enabled SVM. */ -
trunk/src/VBox/VMM/VMMR0/HWACCMR0.cpp
r33545 r34184 77 77 struct 78 78 { 79 /** Set by the ring-0 driverto indicate VMX is supported by the CPU. */79 /** Set to by us to indicate VMX is supported by the CPU. */ 80 80 bool fSupported; 81 81 /** Whether we're using SUPR0EnableVTx or not. */ … … 124 124 uint32_t u32Features; 125 125 126 /** Set by the ring-0 driverto indicate SVM is supported by the CPU. */126 /** Set by us to indicate SVM is supported by the CPU. */ 127 127 bool fSupported; 128 128 } svm;
Note:
See TracChangeset
for help on using the changeset viewer.