[Mono.Profiler.Log] Styling fixes
authorRodrigo Moya <rodrigo.moya@xamarin.com>
Tue, 19 Sep 2017 18:13:33 +0000 (20:13 +0200)
committerRodrigo Moya <rodrigo@gnome.org>
Tue, 19 Sep 2017 18:29:55 +0000 (20:29 +0200)
mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogEnums.cs
mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogStreamHeader.cs

index 9fc47b470f0898a3a86f8de8c04b9b5a162616c8..a204195730d0b763517044c5dd6afeb04029d9c0 100644 (file)
@@ -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
        }
 
index 494044d60ce7ce19b8ac724cbe08e2bcfa0da6cf..44575028a7a38613d59d698f2c282e06d4ff6100 100644 (file)
@@ -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 ();