Changeset 2188 in vbox for trunk/src/VBox/VMM/HWACCM.cpp
- Timestamp:
- Apr 18, 2007 4:24:23 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/HWACCM.cpp
r2132 r2188 455 455 Assert(pVM->fHWACCMEnabled); 456 456 457 #if 0 457 458 /* AMD SVM supports real & protected mode with or without paging. */ 458 459 if (pVM->hwaccm.s.svm.fEnabled) … … 461 462 return true; 462 463 } 464 #endif 463 465 464 466 /* @todo we can support real-mode by using v86 and protected mode without paging with identity mapped pages. … … 513 515 return true; 514 516 } 515 517 else 518 if (pVM->hwaccm.s.svm.fEnabled) 519 { 520 pVM->hwaccm.s.fActive = true; 521 return true; 522 } 523 516 524 return false; 517 525 } … … 588 596 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION; 589 597 } 590 591 598 rc = SSMR3GetU32(pSSM, &pVM->hwaccm.s.Event.fPending); 592 599 AssertRCReturn(rc, rc);
Note:
See TracChangeset
for help on using the changeset viewer.