mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-27 00:04:35 +00:00
Include recorded context switches in thread lifetime.
This commit is contained in:
parent
ca9078845c
commit
72918cda19
@ -2061,13 +2061,21 @@ void View::DrawZones()
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const auto ctx = m_worker.GetContextSwitchData( v->id );
|
||||||
|
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
int64_t first = std::numeric_limits<int64_t>::max();
|
int64_t first = std::numeric_limits<int64_t>::max();
|
||||||
int64_t last = -1;
|
int64_t last = -1;
|
||||||
|
if( ctx && !ctx->v.empty() )
|
||||||
|
{
|
||||||
|
const auto& back = ctx->v.back();
|
||||||
|
first = ctx->v.begin()->start;
|
||||||
|
last = back.end >= 0 ? back.end : back.start;
|
||||||
|
}
|
||||||
if( !v->timeline.empty() )
|
if( !v->timeline.empty() )
|
||||||
{
|
{
|
||||||
first = v->timeline.front()->start;
|
first = std::min( first, v->timeline.front()->start );
|
||||||
last = m_worker.GetZoneEnd( *v->timeline.back() );
|
last = std::max( last, m_worker.GetZoneEnd( *v->timeline.back() ) );
|
||||||
}
|
}
|
||||||
if( !v->messages.empty() )
|
if( !v->messages.empty() )
|
||||||
{
|
{
|
||||||
@ -2093,14 +2101,14 @@ void View::DrawZones()
|
|||||||
|
|
||||||
if( last >= 0 )
|
if( last >= 0 )
|
||||||
{
|
{
|
||||||
const auto activity = last - first;
|
const auto lifetime = last - first;
|
||||||
const auto traceLen = m_worker.GetLastTime() - m_worker.GetTimeBegin();
|
const auto traceLen = m_worker.GetLastTime() - m_worker.GetTimeBegin();
|
||||||
|
|
||||||
TextFocused( "Appeared at", TimeToString( first - m_worker.GetTimeBegin() ) );
|
TextFocused( "Appeared at", TimeToString( first - m_worker.GetTimeBegin() ) );
|
||||||
TextFocused( "Last event at", TimeToString( last - m_worker.GetTimeBegin() ) );
|
TextFocused( "Last event at", TimeToString( last - m_worker.GetTimeBegin() ) );
|
||||||
TextFocused( "Activity time:", TimeToString( activity ) );
|
TextFocused( "Lifetime:", TimeToString( lifetime ) );
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
ImGui::TextDisabled( "(%.2f%%)", activity / double( traceLen ) * 100 );
|
ImGui::TextDisabled( "(%.2f%%)", lifetime / double( traceLen ) * 100 );
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
|
Loading…
Reference in New Issue
Block a user