mirror of
https://github.com/wolfpld/tracy.git
synced 2026-08-30 06:58:28 +00:00
Reduce ring buffer size to workaround sigbus on android.
This commit is contained in:
@@ -659,7 +659,7 @@ static void SetupSampling( int64_t& samplingPeriod )
|
||||
tracy_free( s_ring );
|
||||
return;
|
||||
}
|
||||
new( s_ring+i ) RingBuffer( 1024*1024, fd );
|
||||
new( s_ring+i ) RingBuffer( 64*1024, fd );
|
||||
}
|
||||
|
||||
s_threadSampling = (Thread*)tracy_malloc( sizeof( Thread ) );
|
||||
|
||||
Reference in New Issue
Block a user