Changeset 85328 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 14, 2020 9:54:04 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139308
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/monitor/performance
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/monitor/performance/UIPerformanceMonitor.cpp
r85297 r85328 587 587 , m_strUnit(strUnit) 588 588 , m_iMaximum(0) 589 #if 0 /* Unused according to Clang 11. */ 589 590 , m_iMaximumQueueSize(iMaximumQueueSize) /** @todo r=bird: m_iMaximumQueueSize is not used anywhere that I can see. */ 591 #endif 590 592 , m_fRequiresGuestAdditions(false) 591 593 , m_fIsInitialized(false) 592 594 { 595 RT_NOREF(iMaximumQueueSize); /* Unused according to Clang 11. */ 593 596 m_iTotal[0] = 0; 594 597 m_iTotal[1] = 0; … … 597 600 UIMetric::UIMetric() 598 601 : m_iMaximum(0) 602 #if 0 /* Unused according to Clang 11. */ 599 603 , m_iMaximumQueueSize(0) 604 #endif 600 605 , m_fRequiresGuestAdditions(false) 601 606 , m_fIsInitialized(false) -
trunk/src/VBox/Frontends/VirtualBox/src/monitor/performance/UIPerformanceMonitor.h
r85297 r85328 88 88 * we get from IMachineDebugger m_data values are computed as deltas of total values t - (t-1) */ 89 89 quint64 m_iTotal[DATA_SERIES_SIZE]; 90 #if 0 /* Unused according to Clang 11. */ 90 91 int m_iMaximumQueueSize; 92 #endif 91 93 bool m_fRequiresGuestAdditions; 92 94 /** Used for metrices whose data is computed as total deltas. That is we receieve only total value and
Note:
See TracChangeset
for help on using the changeset viewer.