Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonojenkins <jo.shields+jenkins@xamarin.com>2017-11-28 00:55:06 +0300
committerGitHub <noreply@github.com>2017-11-28 00:55:06 +0300
commitc1fd42eac82815895e352105f3562018c1f4fe0b (patch)
tree86711eaafc6717e64e26f726dc779eebe3419761 /mcs/class/Mono.Profiler.Log
parent984f6484666c2ee6fefec949c81fdff1189c9488 (diff)
parentb736b420b5ff8540722a5a4911e607ece3cdddb7 (diff)
Merge pull request #6097 from mono/slluis-patch-1
Fix invalid enum values in LogGCEvent
Diffstat (limited to 'mcs/class/Mono.Profiler.Log')
-rw-r--r--mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogEnums.cs10
1 files changed, 5 insertions, 5 deletions
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 a204195730d..711f948fa26 100644
--- a/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogEnums.cs
+++ b/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogEnums.cs
@@ -139,11 +139,11 @@ namespace Mono.Profiler.Log {
WeakReference = 2 << 8,
Interior = 4 << 8,
- Stack = 0,
- Finalizer = 1,
- Handle = 2,
- Other = 3,
- Miscellaneous = 4,
+ Stack = 1 << 0,
+ Finalizer = 1 << 1,
+ Handle = 1 << 2,
+ Other = 1 << 3,
+ Miscellaneous = 1 << 4,
TypeMask = 0xff,
}