Emit warning if priority change failed.

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

View File

@ -1112,7 +1112,7 @@ void SysTraceWorker( void* ptr )
SetThreadName( "Tracy Sampling" ); SetThreadName( "Tracy Sampling" );
InitRpmalloc(); InitRpmalloc();
sched_param sp = { 5 }; sched_param sp = { 5 };
pthread_setschedparam( pthread_self(), SCHED_FIFO, &sp ); 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( int i=0; i<s_numBuffers; i++ ) s_ring[i].Enable();
for(;;) for(;;)
{ {