Changeset 98516 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.cpp
- Timestamp:
- Feb 9, 2023 11:24:06 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.cpp
r98503 r98516 534 534 } 535 535 536 void UIMachine::acquireCpuLoadPercentage(int &iPercentage)537 {538 uisession()->acquireCpuLoadPercentage(iPercentage);539 }540 541 536 void UIMachine::acquireFeaturesStatusInfo(QString &strInfo, KVMExecutionEngine &enmEngine) 542 537 { … … 546 541 isHWVirtExUXEnabled(), 547 542 paravirtProvider()); 543 } 544 545 void UIMachine::setLogEnabled(bool fEnabled) 546 { 547 uisession()->setLogEnabled(fEnabled); 548 } 549 550 bool UIMachine::isLogEnabled() 551 { 552 return uisession()->isLogEnabled(); 553 } 554 555 int UIMachine::cpuLoadPercentage() 556 { 557 return uisession()->cpuLoadPercentage(); 548 558 } 549 559 … … 1890 1900 void UIMachine::updateVirtualizationState() 1891 1901 { 1892 m_enmVMExecutionEngine = uisession()-> debugger().GetExecutionEngine();1893 m_fIsHWVirtExNestedPagingEnabled = uisession()-> debugger().GetHWVirtExNestedPagingEnabled();1894 m_fIsHWVirtExUXEnabled = uisession()-> debugger().GetHWVirtExUXEnabled();1902 m_enmVMExecutionEngine = uisession()->executionEngineType(); 1903 m_fIsHWVirtExNestedPagingEnabled = uisession()->isHwVirtExNestedPagingEnabled(); 1904 m_fIsHWVirtExUXEnabled = uisession()->isHwVirtExUXEnabled(); 1895 1905 m_enmParavirtProvider = uisession()->machine().GetEffectiveParavirtProvider(); 1896 1906 }
Note:
See TracChangeset
for help on using the changeset viewer.