1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 12:23:53 +00:00

Run sampling worker thread at max priority.

This commit is contained in:
Bartosz Taudul 2022-06-16 14:24:11 +02:00
parent 8383682306
commit d99024dd02
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -1111,7 +1111,7 @@ void SysTraceWorker( void* ptr )
ThreadExitHandler threadExitHandler;
SetThreadName( "Tracy Sampling" );
InitRpmalloc();
sched_param sp = { 5 };
sched_param sp = { 99 };
if( pthread_setschedparam( pthread_self(), SCHED_FIFO, &sp ) != 0 ) TracyDebug( "Failed to increase SysTraceWorker thread priority!\n" );
for( int i=0; i<s_numBuffers; i++ ) s_ring[i].Enable();
for(;;)