From 0ea8789f391e1707136d70b9deee884393d37d0f Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 17 Aug 2019 17:24:56 +0200 Subject: [PATCH] Display CPU core in waking up thread popup. --- server/TracyView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 1ac3ae92..f036013c 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -2423,6 +2423,7 @@ void View::DrawContextSwitches( const ContextSwitch* ctx, bool hover, double pxn ImGui::BeginTooltip(); TextFocused( "Thread is", "waking up" ); TextFocused( "Scheduling delay:", TimeToString( ev.Start() - ev.wakeup ) ); + TextFocused( "CPU:", RealToString( ev.Cpu(), true ) ); if( ImGui::IsMouseClicked( 2 ) ) { ZoomToRange( pit->End(), ev.wakeup );