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

Decouple source code retrieval from the profiler thread.

This will prevent apparent freezes of the profiler when debuginfod queries are
made.
This commit is contained in:
Bartosz Taudul
2022-10-13 00:27:28 +02:00
parent 6ca1c98655
commit a85c0e18d2
4 changed files with 69 additions and 37 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 = 61 };
enum : uint32_t { ProtocolVersion = 62 };
enum : uint16_t { BroadcastVersion = 3 };
using lz4sz_t = uint32_t;