From f3bb4030f6fcd182e3a7aff056ecf6a6d4be48a8 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 11 Feb 2020 23:45:04 +0100 Subject: [PATCH] Fix ContextSwitchData natvis. --- profiler/build/win32/DebugVis.natvis | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/build/win32/DebugVis.natvis b/profiler/build/win32/DebugVis.natvis index df65b0b8..f183e403 100644 --- a/profiler/build/win32/DebugVis.natvis +++ b/profiler/build/win32/DebugVis.natvis @@ -30,7 +30,7 @@ - {{ start={int64_t( _start_cpu ) >> 8} end={int64_t( _end_reason_state ) >> 16} cpu={uint8_t( _start_cpu & 0xFF )} reason={int8_t( (_end_reason_state >> 8) & 0xFF )} state={int8_t( _end_reason_state & 0xFF )} }} + {{ start={int64_t( _start_cpu ) >> 16} end={int64_t( _end_reason_state ) >> 16} cpu={uint8_t( _start_cpu & 0xFF )} reason={int8_t( (_end_reason_state >> 8) & 0xFF )} state={int8_t( _end_reason_state & 0xFF )} }} {{ start={int64_t( _start_thread ) >> 16} end={_end} thread={uint16_t( _start_thread )} }}