From 981bbfe42d4f4951b3364fa4deca4d29d606eda6 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 9 Dec 2017 19:13:59 +0100 Subject: [PATCH] Reorder LockEvent fields. --- server/TracyEvent.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyEvent.hpp b/server/TracyEvent.hpp index e0a54e4d..49b2853c 100644 --- a/server/TracyEvent.hpp +++ b/server/TracyEvent.hpp @@ -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 ) };