From: Rodrigo Moya Date: Tue, 19 Sep 2017 18:13:33 +0000 (+0200) Subject: [Mono.Profiler.Log] Styling fixes X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=mono.git;a=commitdiff_plain;h=b6bfa9f26d8b65f292649ee7b8b2040b9e4722ac [Mono.Profiler.Log] Styling fixes --- diff --git a/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogEnums.cs b/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogEnums.cs index 9fc47b470f0..a204195730d 100644 --- a/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogEnums.cs +++ b/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogEnums.cs @@ -174,9 +174,13 @@ namespace Mono.Profiler.Log { PostStartWorld = 9, PostStartWorldUnlocked = 11, // Following are v13 and older only + [Obsolete ("This event is no longer produced.")] MarkBegin = 1, + [Obsolete ("This event is no longer produced.")] MarkEnd = 2, + [Obsolete ("This event is no longer produced.")] ReclaimBegin = 3, + [Obsolete ("This event is no longer produced.")] ReclaimEnd = 4 } diff --git a/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogStreamHeader.cs b/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogStreamHeader.cs index 494044d60ce..44575028a7a 100644 --- a/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogStreamHeader.cs +++ b/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogStreamHeader.cs @@ -7,8 +7,9 @@ using System; namespace Mono.Profiler.Log { public sealed class LogStreamHeader { - const int MinimumMLPDSupportedVersion = 13; - const int MaximumMLPDSupportedVersion = 14; + + const int MinVersion = 13; + const int MaxVersion = 14; const int Id = 0x4d505a01; @@ -44,8 +45,8 @@ namespace Mono.Profiler.Log { Version = new Version (reader.ReadByte (), reader.ReadByte ()); FormatVersion = reader.ReadByte (); - if (FormatVersion < MinimumMLPDSupportedVersion || FormatVersion > MaximumMLPDSupportedVersion) - throw new LogException ($"Unsupported MLPD version {FormatVersion}. Should be >= {MinimumMLPDSupportedVersion} and <= {MaximumMLPDSupportedVersion}"); + if (FormatVersion < MinVersion || FormatVersion > MaxVersion) + throw new LogException ($"Unsupported MLPD version {FormatVersion}. Should be >= {MinVersion} and <= {MaxVersion}."); PointerSize = reader.ReadByte (); StartupTime = reader.ReadUInt64 ();