1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-01 05:03:53 +00:00

64MB slab size.

This commit is contained in:
Bartosz Taudul 2017-10-22 15:36:22 +02:00
parent eff6015aad
commit 97b3cccb1a

View File

@ -243,7 +243,7 @@ private:
std::unordered_map<uint64_t, PlotData*> m_pendingPlots; std::unordered_map<uint64_t, PlotData*> m_pendingPlots;
std::unordered_map<uint64_t, MessagePending> m_pendingMessages; std::unordered_map<uint64_t, MessagePending> m_pendingMessages;
Slab<EventSize*1024*1024> m_slab; Slab<64*1024*1024> m_slab;
LZ4_streamDecode_t* m_stream; LZ4_streamDecode_t* m_stream;
char* m_buffer; char* m_buffer;