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

Send lock creation time.

This commit is contained in:
Bartosz Taudul
2018-12-16 20:33:18 +01:00
parent 91171a6674
commit 61ac0b8afc
3 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
namespace tracy
{
enum : uint32_t { ProtocolVersion = 0 };
enum : uint32_t { ProtocolVersion = 1 };
using lz4sz_t = uint32_t;
+1
View File
@@ -109,6 +109,7 @@ enum class LockType : uint8_t
struct QueueLockAnnounce
{
uint32_t id;
int64_t time;
uint64_t lckloc; // ptr
LockType type;
};