1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Send current time in on-demand welcome message.

This commit is contained in:
Bartosz Taudul
2019-06-21 19:34:34 +02:00
parent 48df667a37
commit fd9fc880a6
2 changed files with 4 additions and 1 deletions
+2
View File
@@ -1188,6 +1188,7 @@ void Profiler::Worker()
}
#ifdef TRACY_ON_DEMAND
const auto currentTime = GetTime();
ClearQueues( token );
m_connectionId.fetch_add( 1, std::memory_order_release );
m_isConnected.store( true, std::memory_order_release );
@@ -1202,6 +1203,7 @@ void Profiler::Worker()
#ifdef TRACY_ON_DEMAND
OnDemandPayloadMessage onDemand;
onDemand.frames = m_frameCount.load( std::memory_order_relaxed );
onDemand.currentTime = currentTime;
m_sock->Send( &onDemand, sizeof( onDemand ) );