From: Mike McLaughlin Date: Thu, 28 Sep 2023 21:14:59 +0000 (-0700) Subject: Update from main (#4272) X-Git-Tag: accepted/tizen/unified/riscv/20231226.055542~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d951821532fe44f5cbafbc339e5906592d6a5b36;p=platform%2Fcore%2Fdotnet%2Fdiagnostics.git Update from main (#4272) Co-authored-by: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Andrew Au --- diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 23878c8d5..913611350 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -31,21 +31,21 @@ https://github.com/dotnet/installer f8a61a24ac843529a82a8f6ede35fc08a6fb8c35 - + https://github.com/dotnet/aspnetcore - 4292763bd5143205daabb682311ee34f23897d9b + 96da75d67ff058d95e14de12d9fc2ff215074e3c - + https://github.com/dotnet/aspnetcore - 4292763bd5143205daabb682311ee34f23897d9b + 96da75d67ff058d95e14de12d9fc2ff215074e3c - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f https://github.com/dotnet/source-build-reference-packages diff --git a/eng/Versions.props b/eng/Versions.props index 2a1327cb6..3f186e6d6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -18,11 +18,11 @@ 1.0.446801 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 - 8.0.0-rtm.23476.22 - 8.0.0-rtm.23476.22 + 8.0.0-rtm.23477.14 + 8.0.0-rtm.23477.14 8.0.100-rtm.23474.2 diff --git a/src/Microsoft.Diagnostics.ExtensionCommands/EEHeapCommand.cs b/src/Microsoft.Diagnostics.ExtensionCommands/EEHeapCommand.cs index ac2f9507f..c56514865 100644 --- a/src/Microsoft.Diagnostics.ExtensionCommands/EEHeapCommand.cs +++ b/src/Microsoft.Diagnostics.ExtensionCommands/EEHeapCommand.cs @@ -525,11 +525,11 @@ namespace Microsoft.Diagnostics.ExtensionCommands WriteSegment(gcOutput, segment); } - // print frozen object heap + // print NonGC heap segments = HeapWithFilters.EnumerateFilteredSegments(gc_heap).Where(seg => seg.Kind == GCSegmentKind.Frozen).OrderBy(seg => seg.Start); if (segments.Any()) { - Console.WriteLine("Frozen object heap"); + Console.WriteLine("NonGC heap"); WriteSegmentHeader(gcOutput); foreach (ClrSegment segment in segments)