From 9055a311562fa15392bead7577ec9382b068ffd1 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 14 Nov 2021 18:51:11 +0100 Subject: [PATCH] Decrease number of SPSCQueue items to 8K. This matches the query limit set on the server. --- client/TracyProfiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/TracyProfiler.cpp b/client/TracyProfiler.cpp index 3abb5363..b6c4a8f3 100644 --- a/client/TracyProfiler.cpp +++ b/client/TracyProfiler.cpp @@ -1300,7 +1300,7 @@ Profiler::Profiler() , m_fiQueue( 16 ) , m_fiDequeue( 16 ) #endif - , m_symbolQueue( 64*1024 ) + , m_symbolQueue( 8*1024 ) , m_frameCount( 0 ) , m_isConnected( false ) #ifdef TRACY_ON_DEMAND