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

Reorder LockEvent fields.

This commit is contained in:
Bartosz Taudul 2017-12-09 19:13:59 +01:00
parent cf5ee65604
commit 981bbfe42d

View File

@ -105,11 +105,11 @@ struct LockEvent
int64_t time; int64_t time;
int32_t srcloc; int32_t srcloc;
uint64_t waitList;
uint8_t thread; uint8_t thread;
uint8_t lockingThread; uint8_t lockingThread;
uint8_t type; uint8_t type;
uint8_t lockCount; uint8_t lockCount;
uint64_t waitList;
}; };
enum { LockEventSize = sizeof( LockEvent ) }; enum { LockEventSize = sizeof( LockEvent ) };