1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Move symbol resolution to a separate thread.

This commit is contained in:
Bartosz Taudul
2021-10-22 22:25:09 +02:00
parent b4cfb1f2d5
commit 2b9265cc40
4 changed files with 286 additions and 15 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ namespace tracy
constexpr unsigned Lz4CompressBound( unsigned isize ) { return isize + ( isize / 255 ) + 16; }
enum : uint32_t { ProtocolVersion = 50 };
enum : uint32_t { ProtocolVersion = 51 };
enum : uint16_t { BroadcastVersion = 2 };
using lz4sz_t = uint32_t;