Display number of collected system calls.

This commit is contained in:
Bartosz Taudul
2019-10-27 17:41:15 +01:00
parent 8a6f4258e9
commit 359bcee690

View File

@@ -10508,6 +10508,7 @@ void View::DrawInfo()
TextFocused( "Context switch regions:", RealToString( m_worker.GetContextSwitchCount(), true ) );
ImGui::SameLine();
TextFocused( "+", RealToString( m_worker.GetContextSwitchPerCpuCount(), true ) );
TextFocused( "System calls:", RealToString( m_worker.GetSysCallCount(), true ) );
ImGui::TreePop();
}