From: Grégoire Date: Mon, 22 Apr 2024 22:01:59 +0000 (-0400) Subject: Add waithandle to --clrevents option (#4624) X-Git-Tag: accepted/tizen/unified/20241231.014852~40^2~98 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=48bebfdbf02dd6118c459aca276a88d28ebbb9a2;p=platform%2Fcore%2Fdotnet%2Fdiagnostics.git Add waithandle to --clrevents option (#4624) A useful event to debug thread starvations. Introduced there https://github.com/dotnet/runtime/pull/94737 for .NET 9. --- diff --git a/src/Tools/dotnet-trace/Extensions.cs b/src/Tools/dotnet-trace/Extensions.cs index d73cadcb7..b9bd829c7 100644 --- a/src/Tools/dotnet-trace/Extensions.cs +++ b/src/Tools/dotnet-trace/Extensions.cs @@ -55,6 +55,7 @@ namespace Microsoft.Diagnostics.Tools.Trace { "compilationdiagnostic", 0x2000000000 }, { "methoddiagnostic", 0x4000000000 }, { "typediagnostic", 0x8000000000 }, + { "waithandle", 0x40000000000 }, }; public static List ToProviders(string providersRawInput)