Skip to content

Commit 46a5cc4

Browse files
committed
Stop filling queues with systrace data on exit
1 parent 2d9169e commit 46a5cc4

File tree

1 file changed

+42
-23
lines changed

1 file changed

+42
-23
lines changed

public/client/TracyProfiler.cpp

+42-23
Original file line numberDiff line numberDiff line change
@@ -1155,6 +1155,38 @@ static void CrashHandler( int signal, siginfo_t* info, void* /*ucontext*/ )
11551155
}
11561156
#endif
11571157

1158+
#ifdef TRACY_HAS_SYSTEM_TRACING
1159+
static void StartSystemTracing( int64_t& samplingPeriod )
1160+
{
1161+
assert( s_sysTraceThread == nullptr );
1162+
1163+
// use TRACY_NO_SYS_TRACE=1 to force disabling sys tracing (even if available in the underlying system)
1164+
// as it can have significant impact on the size of the traces
1165+
const char* noSysTrace = GetEnvVar( "TRACY_NO_SYS_TRACE" );
1166+
const bool disableSystrace = (noSysTrace && noSysTrace[0] == '1');
1167+
if( disableSystrace )
1168+
{
1169+
TracyDebug("TRACY: Sys Trace was disabled by 'TRACY_NO_SYS_TRACE=1'\n");
1170+
}
1171+
else if( SysTraceStart( samplingPeriod ) )
1172+
{
1173+
s_sysTraceThread = (Thread*)tracy_malloc( sizeof( Thread ) );
1174+
new(s_sysTraceThread) Thread( SysTraceWorker, nullptr );
1175+
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
1176+
}
1177+
}
1178+
1179+
static void StopSystemTracing()
1180+
{
1181+
if( s_sysTraceThread )
1182+
{
1183+
SysTraceStop();
1184+
s_sysTraceThread->~Thread();
1185+
tracy_free( s_sysTraceThread );
1186+
s_sysTraceThread = nullptr;
1187+
}
1188+
}
1189+
#endif
11581190

11591191
enum { QueuePrealloc = 256 * 1024 };
11601192

@@ -1553,20 +1585,7 @@ void Profiler::RemoveCrashHandler()
15531585
void Profiler::SpawnWorkerThreads()
15541586
{
15551587
#ifdef TRACY_HAS_SYSTEM_TRACING
1556-
// use TRACY_NO_SYS_TRACE=1 to force disabling sys tracing (even if available in the underlying system)
1557-
// as it can have significant impact on the size of the traces
1558-
const char* noSysTrace = GetEnvVar( "TRACY_NO_SYS_TRACE" );
1559-
const bool disableSystrace = (noSysTrace && noSysTrace[0] == '1');
1560-
if( disableSystrace )
1561-
{
1562-
TracyDebug("TRACY: Sys Trace was disabled by 'TRACY_NO_SYS_TRACE=1'\n");
1563-
}
1564-
else if( SysTraceStart( m_samplingPeriod ) )
1565-
{
1566-
s_sysTraceThread = (Thread*)tracy_malloc( sizeof( Thread ) );
1567-
new(s_sysTraceThread) Thread( SysTraceWorker, nullptr );
1568-
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
1569-
}
1588+
StartSystemTracing( m_samplingPeriod );
15701589
#endif
15711590

15721591
s_thread = (Thread*)tracy_malloc( sizeof( Thread ) );
@@ -1603,12 +1622,7 @@ Profiler::~Profiler()
16031622
RemoveCrashHandler();
16041623

16051624
#ifdef TRACY_HAS_SYSTEM_TRACING
1606-
if( s_sysTraceThread )
1607-
{
1608-
SysTraceStop();
1609-
s_sysTraceThread->~Thread();
1610-
tracy_free( s_sysTraceThread );
1611-
}
1625+
StopSystemTracing();
16121626
#endif
16131627

16141628
#ifdef TRACY_HAS_CALLSTACK
@@ -2001,7 +2015,6 @@ void Profiler::Worker()
20012015
}
20022016
else if( status == DequeueStatus::QueueEmpty && serialStatus == DequeueStatus::QueueEmpty )
20032017
{
2004-
if( ShouldExit() ) break;
20052018
if( m_bufferOffset != m_bufferStart )
20062019
{
20072020
if( !CommitData() ) break;
@@ -2032,7 +2045,7 @@ void Profiler::Worker()
20322045
connActive = HandleServerQuery();
20332046
if( !connActive ) break;
20342047
}
2035-
if( !connActive ) break;
2048+
if( !connActive || ShouldExit() ) break;
20362049
}
20372050
if( ShouldExit() ) break;
20382051

@@ -2098,7 +2111,13 @@ void Profiler::Worker()
20982111
while( s_symbolThreadGone.load() == false ) { YieldThread(); }
20992112
#endif
21002113

2101-
// Client is exiting. Send items remaining in queues.
2114+
// Client is exiting.
2115+
#ifdef TRACY_HAS_SYSTEM_TRACING
2116+
// Stop filling queues with new data.
2117+
StopSystemTracing();
2118+
#endif
2119+
2120+
// Send items remaining in queues.
21022121
for(;;)
21032122
{
21042123
const auto status = Dequeue( token );

0 commit comments

Comments
 (0)