Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2019-08-15 02:45:54 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-08-15 02:48:50 +0300
commitaa00b1c4c4f9bd4708fb8c375b9b9c512f922637 (patch)
treeea1ccf8cd640904d454f97f959164e3a63cd8fcf /server/TracyView.cpp
parent69077e4e6f9e8472e13cac61a50117ce785e6798 (diff)
Add Win10 wait reasons.
Diffstat (limited to 'server/TracyView.cpp')
-rw-r--r--server/TracyView.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/server/TracyView.cpp b/server/TracyView.cpp
index fdbef24f..31bad99b 100644
--- a/server/TracyView.cpp
+++ b/server/TracyView.cpp
@@ -2260,7 +2260,10 @@ static const char* DecodeContextSwitchReasonCode( uint8_t reason )
case 34: return "WrFastMutex";
case 35: return "WrGuardedMutex";
case 36: return "WrRundown";
- case 37: return "MaximumWaitReason";
+ case 37: return "WrAlertByThreadId";
+ case 38: return "WrDeferredPreempt";
+ case 39: return "WrPhysicalFault";
+ case 40: return "MaximumWaitReason";
default: return "unknown";
}
}