@@ -1155,6 +1155,38 @@ static void CrashHandler( int signal, siginfo_t* info, void* /*ucontext*/ )
1155
1155
}
1156
1156
#endif
1157
1157
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
1158
1190
1159
1191
enum { QueuePrealloc = 256 * 1024 };
1160
1192
@@ -1553,20 +1585,7 @@ void Profiler::RemoveCrashHandler()
1553
1585
void Profiler::SpawnWorkerThreads ()
1554
1586
{
1555
1587
#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 );
1570
1589
#endif
1571
1590
1572
1591
s_thread = (Thread*)tracy_malloc ( sizeof ( Thread ) );
@@ -1603,12 +1622,7 @@ Profiler::~Profiler()
1603
1622
RemoveCrashHandler ();
1604
1623
1605
1624
#ifdef TRACY_HAS_SYSTEM_TRACING
1606
- if ( s_sysTraceThread )
1607
- {
1608
- SysTraceStop ();
1609
- s_sysTraceThread->~Thread ();
1610
- tracy_free ( s_sysTraceThread );
1611
- }
1625
+ StopSystemTracing ();
1612
1626
#endif
1613
1627
1614
1628
#ifdef TRACY_HAS_CALLSTACK
@@ -2001,7 +2015,6 @@ void Profiler::Worker()
2001
2015
}
2002
2016
else if ( status == DequeueStatus::QueueEmpty && serialStatus == DequeueStatus::QueueEmpty )
2003
2017
{
2004
- if ( ShouldExit () ) break ;
2005
2018
if ( m_bufferOffset != m_bufferStart )
2006
2019
{
2007
2020
if ( !CommitData () ) break ;
@@ -2032,7 +2045,7 @@ void Profiler::Worker()
2032
2045
connActive = HandleServerQuery ();
2033
2046
if ( !connActive ) break ;
2034
2047
}
2035
- if ( !connActive ) break ;
2048
+ if ( !connActive || ShouldExit () ) break ;
2036
2049
}
2037
2050
if ( ShouldExit () ) break ;
2038
2051
@@ -2098,7 +2111,13 @@ void Profiler::Worker()
2098
2111
while ( s_symbolThreadGone.load () == false ) { YieldThread (); }
2099
2112
#endif
2100
2113
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.
2102
2121
for (;;)
2103
2122
{
2104
2123
const auto status = Dequeue ( token );
0 commit comments