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

Store source location on 32 bits, not 64.

This commit is contained in:
Bartosz Taudul
2017-10-28 22:14:01 +02:00
parent fb6c91b552
commit 39ac41bc19
3 changed files with 48 additions and 11 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ struct ZoneEvent
{
int64_t start;
int64_t end;
uint64_t srcloc;
uint32_t srcloc;
int8_t cpu_start;
int8_t cpu_end;
@@ -41,7 +41,7 @@ struct LockEvent
};
int64_t time;
uint64_t srcloc;
uint32_t srcloc;
uint64_t waitList;
uint8_t thread;
uint8_t lockingThread;