From bd34c24b841492bdea9544f7b82127e80fd9c8ab Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 23 Feb 2020 12:35:30 +0100 Subject: [PATCH] Increase block size. --- client/tracy_concurrentqueue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/tracy_concurrentqueue.h b/client/tracy_concurrentqueue.h index a15d9868..10ba541a 100644 --- a/client/tracy_concurrentqueue.h +++ b/client/tracy_concurrentqueue.h @@ -191,7 +191,7 @@ struct ConcurrentQueueDefaultTraits // but many producers, a smaller block size should be favoured. For few producers // and/or many elements, a larger block size is preferred. A sane default // is provided. Must be a power of 2. - static const size_t BLOCK_SIZE = 128; + static const size_t BLOCK_SIZE = 256; // For explicit producers (i.e. when using a producer token), the block is // checked for being empty by iterating through a list of flags, one per element.