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

Send lock events.

This commit is contained in:
Bartosz Taudul
2017-10-04 16:45:46 +02:00
parent 78f8425dc7
commit 0011573fa9
3 changed files with 64 additions and 1 deletions
+9
View File
@@ -80,14 +80,23 @@ struct QueueLockAnnounce
struct QueueLockWait
{
uint64_t id; // ptr
int64_t time;
uint64_t thread;
};
struct QueueLockObtain
{
uint64_t id; // ptr
int64_t time;
uint64_t thread;
};
struct QueueLockRelease
{
uint64_t id; // ptr
int64_t time;
uint64_t thread;
};
struct QueueHeader