Changeset 10695 in vbox for trunk/src/VBox/Main/MachineDebuggerImpl.cpp
- Timestamp:
- Jul 16, 2008 12:17:31 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33412
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineDebuggerImpl.cpp
r9242 r10695 530 530 531 531 /** 532 * Returns the current nested paging flag. 533 * 534 * @returns COM status code 535 * @param enabled address of result variable 536 */ 537 STDMETHODIMP MachineDebugger::COMGETTER(HWVirtExNestedPagingEnabled)(BOOL *enabled) 538 { 539 if (!enabled) 540 return E_POINTER; 541 542 AutoWriteLock alock (this); 543 CHECK_READY(); 544 545 Console::SafeVMPtrQuiet pVM (mParent); 546 if (pVM.isOk()) 547 *enabled = HWACCMR3IsNestedPagingActive(pVM.raw()); 548 else 549 *enabled = false; 550 return S_OK; 551 } 552 553 /** 532 554 * Returns the current PAE flag. 533 555 *
Note:
See TracChangeset
for help on using the changeset viewer.