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;
int32_t srcloc;
uint64_t waitList;
uint8_t thread;
uint8_t lockingThread;
uint8_t type;
uint8_t lockCount;
uint64_t waitList;
};
enum { LockEventSize = sizeof( LockEvent ) };