From 358c6b0e2b35210b7cf6cff26035399fff8835d1 Mon Sep 17 00:00:00 2001 From: Koundinya Veluri Date: Mon, 31 May 2021 03:53:42 -0700 Subject: [PATCH] Add a thread adjustment reason - Depends on https://github.com/dotnet/runtime/pull/53471 - The change above added a new reason for thread adjustment (`CooperativeBlocking`), added here too --- src/TraceEvent/Parsers/ClrTraceEventParser.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/TraceEvent/Parsers/ClrTraceEventParser.cs b/src/TraceEvent/Parsers/ClrTraceEventParser.cs index d8e2692e3..cbb899b63 100644 --- a/src/TraceEvent/Parsers/ClrTraceEventParser.cs +++ b/src/TraceEvent/Parsers/ClrTraceEventParser.cs @@ -12602,6 +12602,7 @@ public enum ThreadAdjustmentReason Stabilizing = 0x5, Starvation = 0x6, ThreadTimedOut = 0x7, + CooperativeBlocking = 0x8, } [Flags]