Ref T275, count simconnectProc calls and how often it was doing nothing

This commit is contained in:
Klaus Basan
2018-06-21 23:06:16 +02:00
parent dff5c90853
commit abdecaf9d8
3 changed files with 9 additions and 2 deletions

View File

@@ -430,7 +430,9 @@ namespace BlackSimPlugin
int m_skipCockpitUpdateCycles = 0; //!< skip some update cycles to allow changes in simulator cockpit to be set
// tracing dispatch performance
int m_dispatchErrors = 0; //!< number of dispatched failed, \sa dispatch
int m_dispatchErrors = 0; //!< number of dispatched failed, \sa dispatch
int m_dispatchProcCount = 0; //!< number of dispatchProc counts
int m_dispatchProcEmpty = 0; //!< number dispatchProc doing nothing
qint64 m_dispatchTimeMs = -1;
qint64 m_dispatchMaxTimeMs = -1;
qint64 m_dispatchProcTimeMs = -1;