From 1a24ea939e78617c66959f81ab384acd2b4449f8 Mon Sep 17 00:00:00 2001 From: Harald Wolff Date: Sun, 1 Sep 2019 19:33:28 +0200 Subject: [PATCH] Added Dictionary<,> mapping support --- .vs/sharp.json/xs/UserPrefs.xml | 13 +- ln.json.csproj | 1 + mapping/JSONDictionaryMapping.cs | 39 + mapping/JSONMapper.cs | 18 +- mapping/JSONObjectMapping.cs | 2 +- mono_crash.197419575f.0.json | 2382 ++++++++++++++++++++++++++++++ mono_crash.197419575f.1.json | 2310 +++++++++++++++++++++++++++++ 7 files changed, 4754 insertions(+), 11 deletions(-) create mode 100644 mapping/JSONDictionaryMapping.cs create mode 100644 mono_crash.197419575f.0.json create mode 100644 mono_crash.197419575f.1.json diff --git a/.vs/sharp.json/xs/UserPrefs.xml b/.vs/sharp.json/xs/UserPrefs.xml index 6d0c64c..17140f9 100644 --- a/.vs/sharp.json/xs/UserPrefs.xml +++ b/.vs/sharp.json/xs/UserPrefs.xml @@ -1,17 +1,18 @@  - + - + + - - - + - + + + diff --git a/ln.json.csproj b/ln.json.csproj index 07b689f..402e9c0 100644 --- a/ln.json.csproj +++ b/ln.json.csproj @@ -53,6 +53,7 @@ + diff --git a/mapping/JSONDictionaryMapping.cs b/mapping/JSONDictionaryMapping.cs new file mode 100644 index 0000000..58b9c8a --- /dev/null +++ b/mapping/JSONDictionaryMapping.cs @@ -0,0 +1,39 @@ +// /** +// * File: JSONDictionaryMapping.cs +// * Author: haraldwolff +// * +// * This file and it's content is copyrighted by the Author and / or copyright holder. +// * Any use wihtout proper permission is illegal and may lead to legal actions. +// * +// * +// **/ +using System; +using System.Collections.Generic; +namespace ln.json.mapping +{ + public class JSONDictionaryMapping : JSONMapping + { + public JSONDictionaryMapping() + :base(typeof(Dictionary)) + { + } + + public override JSONValue ToJson(JSONMapper mapper, object value) + { + JSONObject jObject = new JSONObject(); + + foreach (KeyValuePair item in (Dictionary)value) + { + jObject[item.Key.ToString()] = mapper.ToJson(item.Value); + } + + return jObject; + } + + public override object FromJson(JSONMapper mapper, JSONValue json) + { + return null; + } + + } +} diff --git a/mapping/JSONMapper.cs b/mapping/JSONMapper.cs index 8c01a4d..eecc3ff 100644 --- a/mapping/JSONMapper.cs +++ b/mapping/JSONMapper.cs @@ -127,13 +127,23 @@ namespace ln.json.mapping if (targetType.IsArray) { Add(new JSONArrayMapping(targetType)); - } else if (targetType.IsEnum) + } + else if (targetType.IsEnum) { Add(new JSONEnumMapping(targetType)); - } else if (targetType.IsGenericType && targetType.GetGenericTypeDefinition().Equals(typeof(IEnumerable<>))) + } + else if (targetType.IsGenericType) { - Add((JSONMapping)Activator.CreateInstance(typeof(JSONEnumerableMapping<>).MakeGenericType(targetType.GetGenericArguments()[0]))); - } else + Type genericTypeDefinition = targetType.GetGenericTypeDefinition(); + if (genericTypeDefinition.Equals(typeof(IEnumerable<>))) + { + Add((JSONMapping)Activator.CreateInstance(typeof(JSONEnumerableMapping<>).MakeGenericType(targetType.GetGenericArguments()[0]))); + } else if (genericTypeDefinition.Equals(typeof(Dictionary<,>))) + { + Add((JSONMapping)Activator.CreateInstance(typeof(JSONDictionaryMapping<,>).MakeGenericType(targetType.GetGenericArguments()))); + } + } + else { Add(new JSONObjectMapping(targetType)); } diff --git a/mapping/JSONObjectMapping.cs b/mapping/JSONObjectMapping.cs index 19e0409..78e500d 100644 --- a/mapping/JSONObjectMapping.cs +++ b/mapping/JSONObjectMapping.cs @@ -40,7 +40,7 @@ namespace ln.json.mapping foreach (PropertyInfo propertyInfo in type.GetProperties(BindingFlags.Instance | BindingFlags.Public)) { JSONMappingAttribute mappingAttribute = propertyInfo.GetCustomAttribute(); - if ((mappingAttribute == null) || !mappingAttribute.Private) + if ((propertyInfo.GetIndexParameters().Length == 0) && ((mappingAttribute == null) || !mappingAttribute.Private)) { setters.Add(propertyInfo.Name, (object arg1, object arg2) => propertyInfo.SetValue(arg1, arg2)); getters.Add(propertyInfo.Name, (object arg) => propertyInfo.GetValue(arg)); diff --git a/mono_crash.197419575f.0.json b/mono_crash.197419575f.0.json new file mode 100644 index 0000000..ac382fa --- /dev/null +++ b/mono_crash.197419575f.0.json @@ -0,0 +1,2382 @@ +{ + "protocol_version" : "0.0.4", + "configuration" : { + "version" : "(6.0.0.319) (tarball)", + "tlc" : "__thread", + "sigsgev" : "altstack", + "notifications" : "epoll", + "architecture" : "amd64", + "disabled_features" : "none", + "smallconfig" : "disabled", + "bigarrays" : "disabled", + "softdebug" : "enabled", + "interpreter" : "enabled", + "llvm_support" : "600", + "suspend" : "hybrid" + }, + "memory" : { + "minor_gc_time" : "155020", + "major_gc_time" : "0", + "minor_gc_count" : "6", + "major_gc_count" : "0", + "major_gc_time_concurrent" : "0" + }, + "threads" : [ + { + "is_managed" : true, + "offset_free_hash" : "0xad9e37b0d", + "offset_rich_hash" : "0xad9e37dbb", + "crashed" : false, + "native_thread_id" : "0x7f135162e700", + "thread_info_addr" : "0x7f1314000b20", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f135c0de00c", + "SP" : "0x7f135162c4a0", + "BP" : "(nil)" + }, + "managed_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001fe3", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00019" + } +, + { + "is_managed" : "true", + "guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", + "token" : "0x6000084", + "native_offset" : "0x0", + "filename" : "MonoDevelop.MSBuildBuilder.exe", + "sizeofimage" : "0x14000", + "timestamp" : "0xde5f999a", + "il_offset" : "0x000ef" + } +, + { + "is_managed" : "true", + "guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", + "token" : "0x600009d", + "native_offset" : "0x0", + "filename" : "MonoDevelop.MSBuildBuilder.exe", + "sizeofimage" : "0x14000", + "timestamp" : "0xde5f999a", + "il_offset" : "0x0006e" + } +, + { + "is_managed" : "true", + "guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", + "token" : "0x600007b", + "native_offset" : "0x0", + "filename" : "MonoDevelop.MSBuildBuilder.exe", + "sizeofimage" : "0x14000", + "timestamp" : "0xde5f999a", + "il_offset" : "0x0006d" + } +, + { + "is_managed" : "true", + "guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "MonoDevelop.MSBuildBuilder.exe", + "sizeofimage" : "0x14000", + "timestamp" : "0xde5f999a", + "il_offset" : "0x0002a" + } +, + { + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0000c" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x60047fa", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", + "token" : "0x6000039", + "native_offset" : "0x0", + "filename" : "MonoDevelop.MSBuildBuilder.exe", + "sizeofimage" : "0x14000", + "timestamp" : "0xde5f999a", + "il_offset" : "0x00019" + } +, + { + "is_managed" : "true", + "guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", + "token" : "0x6000166", + "native_offset" : "0x0", + "filename" : "MonoDevelop.MSBuildBuilder.exe", + "sizeofimage" : "0x14000", + "timestamp" : "0xde5f999a", + "il_offset" : "0x00029" + } +, + { + "is_managed" : "true", + "guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", + "token" : "0x6000181", + "native_offset" : "0x0", + "filename" : "MonoDevelop.MSBuildBuilder.exe", + "sizeofimage" : "0x14000", + "timestamp" : "0xde5f999a", + "il_offset" : "0x00001" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001f96", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00007" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001f94", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00021" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001f91", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0002a" + } + + ], + "unmanaged_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f135bbeaf80", + "thread_info_addr" : "0x556b0d1eb2a0", + "thread_name" : "mono", + "ctx" : { + "IP" : "0x7f135c0de00c", + "SP" : "0x7ffff530aee0", + "BP" : "(nil)" + }, + "unmanaged_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } + + ] +}, +{ + "is_managed" : true, + "offset_free_hash" : "0x197419575f", + "offset_rich_hash" : "0x1974196a5b", + "crashed" : true, + "native_thread_id" : "0x7f1352831700", + "thread_info_addr" : "0x7f132c000b20", + "thread_name" : "RequestBuilder ", + "ctx" : { + "IP" : "0x556b0bb91070", + "SP" : "0x7f135282e320", + "BP" : "0x12280e10" + }, + "managed_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "DEB30347-DB1B-4646-B071-0013392019C7", + "token" : "0x600000c", + "native_offset" : "0x0", + "filename" : "Microsoft.NET.Build.Extensions.Tasks.dll", + "sizeofimage" : "0x16000", + "timestamp" : "0xb82c3d7c", + "il_offset" : "0x00020" + } +, + { + "is_managed" : "true", + "guid" : "DEB30347-DB1B-4646-B071-0013392019C7", + "token" : "0x600000a", + "native_offset" : "0x0", + "filename" : "Microsoft.NET.Build.Extensions.Tasks.dll", + "sizeofimage" : "0x16000", + "timestamp" : "0xb82c3d7c", + "il_offset" : "0x0001f" + } +, + { + "is_managed" : "true", + "guid" : "DEB30347-DB1B-4646-B071-0013392019C7", + "token" : "0x6000009", + "native_offset" : "0x0", + "filename" : "Microsoft.NET.Build.Extensions.Tasks.dll", + "sizeofimage" : "0x16000", + "timestamp" : "0xb82c3d7c", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "DEB30347-DB1B-4646-B071-0013392019C7", + "token" : "0x6000041", + "native_offset" : "0x0", + "filename" : "Microsoft.NET.Build.Extensions.Tasks.dll", + "sizeofimage" : "0x16000", + "timestamp" : "0xb82c3d7c", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x60012ed", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x00029" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x6002006", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x002a9" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6004556", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0002c" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x6001194", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x0004d" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x6002001", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x00065" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6004556", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0002c" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x6001192", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x0004d" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x6001ffd", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x0019d" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6004556", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0002c" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x600118d", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x00044" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x6001ffb", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x0015e" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6004556", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0002c" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x600118c", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x00033" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x6001ff9", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x0018b" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6004556", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0002c" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x6001187", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x00068" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x6001ff7", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x0005f" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6004556", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0002c" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x6001161", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x0004d" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x6001ff5", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x002b7" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x600454b", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0002c" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x600115a", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x00044" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x6001fef", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x00414" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6004570", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x600456f", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00024" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x60023f4", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x600233a", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6002484", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00014" + } +, + { + "is_managed" : "true", + "guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", + "token" : "0x6001fd8", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x190000", + "timestamp" : "0xef7d8394", + "il_offset" : "0x0001a" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001ec9", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00014" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001ecb", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00008" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0002a" + } + + ], +"unmanaged_frames" : [ +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f1351cff700", +"thread_info_addr" : "0x7f131c020ed0", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f135c0e0a82", + "SP" : "0x7f1351cfec60", + "BP" : "0x556b0c07edc8" +}, +"unmanaged_frames" : [ +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f1352a73700", +"thread_info_addr" : "0x7f1334007fe0", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f135c0e0a82", + "SP" : "0x7f1352a72c60", + "BP" : "0x556b0c07edc8" +}, +"unmanaged_frames" : [ +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f13521f6700", +"thread_info_addr" : "0x7f1324000b20", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f135c0e0a82", + "SP" : "0x7f13521f5c60", + "BP" : "0x556b0c07edc8" +}, +"unmanaged_frames" : [ +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f1353fff700", +"thread_info_addr" : "0x7f1348000b20", +"thread_name" : "mono", +"ctx" : { + "IP" : "0x7f135c0de3f9", + "SP" : "0x7f1353ffeb80", + "BP" : "(nil)" +}, +"unmanaged_frames" : [ +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x429555873", +"offset_rich_hash" : "0x42955590e", +"crashed" : false, +"native_thread_id" : "0x7f1353351700", +"thread_info_addr" : "0x7f1330000b20", +"thread_name" : "Timer-Scheduler", +"ctx" : { + "IP" : "0x7f135c0de3f9", + "SP" : "0x7f135334fee0", + "BP" : "(nil)" +}, +"managed_frames" : [ +{ + "native_address" : "unregistered" + } +, +{ + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001fe3", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00019" + } +, +{ + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x600209e", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0003c" + } +, +{ + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001ec9", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00014" + } +, +{ + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001ecb", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00008" + } +, +{ + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0002a" + } + +], +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x6fcdf5769", +"offset_rich_hash" : "0x6fcdf59d3", +"crashed" : false, +"native_thread_id" : "0x7f13537fb700", +"thread_info_addr" : "0x7f133c000b20", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f135c0de00c", +"SP" : "0x7f13537f9910", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001fe3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6000af8", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00053" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6000a13", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x60000a0", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x00065" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000178", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x0012f" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000085", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x0001c" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ec9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ecb", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f135182f700", +"thread_info_addr" : "0x7f13100059f0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f135c0e0a82", +"SP" : "0x7f135182ec60", +"BP" : "0x556b0c07edc8" +}, +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f1353bfd700", +"thread_info_addr" : "0x7f134403fa50", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f135c0e0a82", +"SP" : "0x7f1353bfcc60", +"BP" : "0x556b0c07edc8" +}, +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x689d0ba6d", +"offset_rich_hash" : "0x689d0bb9d", +"crashed" : false, +"native_thread_id" : "0x7f13583fa700", +"thread_info_addr" : "0x7f134c000b20", +"thread_name" : "mono", +"ctx" : { +"IP" : "0x7f135c0e1882", +"SP" : "0x7f13583f93b0", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x282000", +"timestamp" : "0xacb92ac4", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", +"token" : "0x6002164", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x282000", +"timestamp" : "0xacb92ac4", +"il_offset" : "0x0000c" +} +, +{ +"is_managed" : "true", +"guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", +"token" : "0x600215a", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x282000", +"timestamp" : "0xacb92ac4", +"il_offset" : "0x0002e" +} +, +{ +"is_managed" : "true", +"guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", +"token" : "0x60020f5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x282000", +"timestamp" : "0xacb92ac4", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", +"token" : "0x60020b2", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x282000", +"timestamp" : "0xacb92ac4", +"il_offset" : "0x0009b" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6005651", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00007" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x600005d", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x0000e" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ec9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ecb", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f1359053700", +"thread_info_addr" : "0x7f1354000b20", +"thread_name" : "Finalizer", +"ctx" : { +"IP" : "0x7f135c0e0896", +"SP" : "0x7f1359052c90", +"BP" : "0x556b0c07e480" +}, +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x4b3aeb90a", +"offset_rich_hash" : "0x4b3aeb997", +"crashed" : false, +"native_thread_id" : "0x7f1352872700", +"thread_info_addr" : "0x7f1328000b20", +"thread_name" : "In-proc Node (D", +"ctx" : { +"IP" : "0x7f135c0de00c", +"SP" : "0x7f1352870ef0", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ff3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x600108b", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00047" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x60012a3", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ec9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ecb", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f13523f7700", +"thread_info_addr" : "0x7f1320000b20", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f135c0e0a82", +"SP" : "0x7f13523f6c60", +"BP" : "0x556b0c07edc8" +}, +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x5fd4c7055", +"offset_rich_hash" : "0x5fd4c7256", +"crashed" : false, +"native_thread_id" : "0x7f1351ff5700", +"thread_info_addr" : "0x7f1318000b20", +"thread_name" : "RequestBuilder ", +"ctx" : { +"IP" : "0x7f135c0de00c", +"SP" : "0x7f1351ff4280", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001e9e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ded", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x000d9" +} +, +{ +"is_managed" : "true", +"guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", +"token" : "0x6003bbb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x282000", +"timestamp" : "0xacb92ac4", +"il_offset" : "0x00067" +} +, +{ +"is_managed" : "true", +"guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", +"token" : "0x6004279", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x282000", +"timestamp" : "0xacb92ac4", +"il_offset" : "0x0004d" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6001fd8", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x0002e" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ec9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ecb", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x42955599d", +"offset_rich_hash" : "0x429555a1c", +"crashed" : false, +"native_thread_id" : "0x7f1353dfe700", +"thread_info_addr" : "0x7f13401d5cf0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f135c0e1bf0", +"SP" : "0x7f1353dfcd70", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6002084", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002d" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001f96", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00007" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001f94", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00021" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001f91", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x438d74c9a", +"offset_rich_hash" : "0x438d74cfd", +"crashed" : false, +"native_thread_id" : "0x7f13539fc700", +"thread_info_addr" : "0x7f1338000b20", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f135c0de3f9", +"SP" : "0x7f13539fb600", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ef0", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000176", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x00004" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ec9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ecb", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +} +] +} \ No newline at end of file diff --git a/mono_crash.197419575f.1.json b/mono_crash.197419575f.1.json new file mode 100644 index 0000000..3c30559 --- /dev/null +++ b/mono_crash.197419575f.1.json @@ -0,0 +1,2310 @@ +{ + "protocol_version" : "0.0.4", + "configuration" : { + "version" : "(6.0.0.319) (tarball)", + "tlc" : "__thread", + "sigsgev" : "altstack", + "notifications" : "epoll", + "architecture" : "amd64", + "disabled_features" : "none", + "smallconfig" : "disabled", + "bigarrays" : "disabled", + "softdebug" : "enabled", + "interpreter" : "enabled", + "llvm_support" : "600", + "suspend" : "hybrid" + }, + "memory" : { + "minor_gc_time" : "122272", + "major_gc_time" : "0", + "minor_gc_count" : "5", + "major_gc_count" : "0", + "major_gc_time_concurrent" : "0" + }, + "threads" : [ + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7fad62f73700", + "thread_info_addr" : "0x7fad4c000b20", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7fad745b6a82", + "SP" : "0x7fad62f72c60", + "BP" : "0x5654f1ea4dc8" + }, + "unmanaged_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7fad705f9700", + "thread_info_addr" : "0x7fad68000b20", + "thread_name" : "mono", + "ctx" : { + "IP" : "0x7fad745b43f9", + "SP" : "0x7fad705f8b80", + "BP" : "(nil)" + }, + "unmanaged_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7fad626d1700", + "thread_info_addr" : "0x7fad3c000b20", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7fad745b6a82", + "SP" : "0x7fad626d0c60", + "BP" : "0x5654f1ea4dc8" + }, + "unmanaged_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } + + ] + }, + { + "is_managed" : true, + "offset_free_hash" : "0x438d74c9a", + "offset_rich_hash" : "0x438d74cfd", + "crashed" : false, + "native_thread_id" : "0x7fad63dfe700", + "thread_info_addr" : "0x7fad50000b20", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7fad745b43f9", + "SP" : "0x7fad63dfd600", + "BP" : "(nil)" + }, + "managed_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001ef0", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00019" + } +, + { + "is_managed" : "true", + "guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", + "token" : "0x6000176", + "native_offset" : "0x0", + "filename" : "MonoDevelop.MSBuildBuilder.exe", + "sizeofimage" : "0x14000", + "timestamp" : "0xde5f999a", + "il_offset" : "0x00004" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001ec9", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00014" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001ecb", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00008" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0002a" + } + + ], + "unmanaged_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7fad621c8700", + "thread_info_addr" : "0x7fad34000b20", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7fad745b6a82", + "SP" : "0x7fad621c7c60", + "BP" : "0x5654f1ea4dc8" + }, + "unmanaged_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7fad61cd7700", + "thread_info_addr" : "0x7fad2800f180", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7fad745b6a82", + "SP" : "0x7fad61cd6c60", + "BP" : "0x5654f1ea4dc8" + }, + "unmanaged_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7fad740c0f80", + "thread_info_addr" : "0x5654f25572a0", + "thread_name" : "mono", + "ctx" : { + "IP" : "0x7fad745b400c", + "SP" : "0x7fffcd612720", + "BP" : "(nil)" + }, + "unmanaged_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7fad714d4700", + "thread_info_addr" : "0x7fad6c000b20", + "thread_name" : "Finalizer", + "ctx" : { + "IP" : "0x7fad745b6896", + "SP" : "0x7fad714d3c90", + "BP" : "0x5654f1ea4480" + }, + "unmanaged_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } +, + { + "native_address" : "unregistered" + } + + ] +}, +{ + "is_managed" : true, + "offset_free_hash" : "0x689d0ba6d", + "offset_rich_hash" : "0x689d0bb9d", + "crashed" : false, + "native_thread_id" : "0x7fad707fa700", + "thread_info_addr" : "0x7fad64000b20", + "thread_name" : "mono", + "ctx" : { + "IP" : "0x7fad745b7882", + "SP" : "0x7fad707f93e0", + "BP" : "(nil)" + }, + "managed_frames" : [ + { + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x282000", + "timestamp" : "0xacb92ac4", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", + "token" : "0x6002164", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x282000", + "timestamp" : "0xacb92ac4", + "il_offset" : "0x0000c" + } +, + { + "is_managed" : "true", + "guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", + "token" : "0x600215a", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x282000", + "timestamp" : "0xacb92ac4", + "il_offset" : "0x0002e" + } +, + { + "is_managed" : "true", + "guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", + "token" : "0x60020f5", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x282000", + "timestamp" : "0xacb92ac4", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", + "token" : "0x60020b2", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x282000", + "timestamp" : "0xacb92ac4", + "il_offset" : "0x0009b" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6005651", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00007" + } +, + { + "is_managed" : "true", + "guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", + "token" : "0x600005d", + "native_offset" : "0x0", + "filename" : "MonoDevelop.MSBuildBuilder.exe", + "sizeofimage" : "0x14000", + "timestamp" : "0xde5f999a", + "il_offset" : "0x0000e" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001ec9", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00014" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001ecb", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00008" + } +, + { + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0002a" + } + + ], +"unmanaged_frames" : [ +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7fad703f8700", +"thread_info_addr" : "0x7fad5c000b20", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7fad745b6a82", + "SP" : "0x7fad703f7c60", + "BP" : "0x5654f1ea4dc8" +}, +"unmanaged_frames" : [ +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } +, +{ + "native_address" : "unregistered" + } + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x429555873", +"offset_rich_hash" : "0x42955590e", +"crashed" : false, +"native_thread_id" : "0x7fad637b5700", +"thread_info_addr" : "0x7fad48000b20", +"thread_name" : "Timer-Scheduler", +"ctx" : { + "IP" : "0x7fad745b43f9", + "SP" : "0x7fad637b3ee0", + "BP" : "(nil)" +}, +"managed_frames" : [ +{ + "native_address" : "unregistered" + } +, +{ + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001fe3", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00019" + } +, +{ + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x600209e", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0003c" + } +, +{ + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001ec9", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00014" + } +, +{ + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x6001ecb", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x00008" + } +, +{ + "is_managed" : "true", + "guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x462000", + "timestamp" : "0xe2bf570a", + "il_offset" : "0x0002a" + } + +], +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x4b3aeb90a", +"offset_rich_hash" : "0x4b3aeb997", +"crashed" : false, +"native_thread_id" : "0x7fad62d72700", +"thread_info_addr" : "0x7fad40000b20", +"thread_name" : "In-proc Node (D", +"ctx" : { +"IP" : "0x7fad745b400c", +"SP" : "0x7fad62d70ef0", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ff3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x600108b", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00047" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x60012a3", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ec9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ecb", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7fad628d2700", +"thread_info_addr" : "0x7fad38000b20", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7fad745b6a82", +"SP" : "0x7fad628d1c60", +"BP" : "0x5654f1ea4dc8" +}, +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x197419575f", +"offset_rich_hash" : "0x1974196a5b", +"crashed" : true, +"native_thread_id" : "0x7fad624d0700", +"thread_info_addr" : "0x7fad30000b20", +"thread_name" : "RequestBuilder ", +"ctx" : { +"IP" : "0x5654f19b7070", +"SP" : "0x7fad624cd320", +"BP" : "0x1e8b2db2" +}, +"managed_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "DEB30347-DB1B-4646-B071-0013392019C7", +"token" : "0x600000c", +"native_offset" : "0x0", +"filename" : "Microsoft.NET.Build.Extensions.Tasks.dll", +"sizeofimage" : "0x16000", +"timestamp" : "0xb82c3d7c", +"il_offset" : "0x00020" +} +, +{ +"is_managed" : "true", +"guid" : "DEB30347-DB1B-4646-B071-0013392019C7", +"token" : "0x600000a", +"native_offset" : "0x0", +"filename" : "Microsoft.NET.Build.Extensions.Tasks.dll", +"sizeofimage" : "0x16000", +"timestamp" : "0xb82c3d7c", +"il_offset" : "0x0001f" +} +, +{ +"is_managed" : "true", +"guid" : "DEB30347-DB1B-4646-B071-0013392019C7", +"token" : "0x6000009", +"native_offset" : "0x0", +"filename" : "Microsoft.NET.Build.Extensions.Tasks.dll", +"sizeofimage" : "0x16000", +"timestamp" : "0xb82c3d7c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "DEB30347-DB1B-4646-B071-0013392019C7", +"token" : "0x6000041", +"native_offset" : "0x0", +"filename" : "Microsoft.NET.Build.Extensions.Tasks.dll", +"sizeofimage" : "0x16000", +"timestamp" : "0xb82c3d7c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x60012ed", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00029" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6002006", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x002a9" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6004556", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6001194", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x0004d" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6002001", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00065" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6004556", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6001192", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x0004d" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6001ffd", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x0019d" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6004556", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x600118d", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00044" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6001ffb", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x0015e" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6004556", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x600118c", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00033" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6001ff9", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x0018b" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6004556", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6001187", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00068" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6001ff7", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x0005f" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6004556", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6001161", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x0004d" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6001ff5", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x002b7" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x600454b", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x600115a", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00044" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6001fef", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00414" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6004570", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x600456f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00024" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x60023f4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x600233a", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6002484", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6001fd8", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x0001a" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ec9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ecb", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x6fcdf5769", +"offset_rich_hash" : "0x6fcdf59d3", +"crashed" : false, +"native_thread_id" : "0x7fad63bfd700", +"thread_info_addr" : "0x7fad54000b20", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7fad745b400c", +"SP" : "0x7fad63bfb910", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001fe3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6000af8", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00053" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6000a13", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x60000a0", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x00065" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000178", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x0012f" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000085", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x0001c" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ec9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ecb", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7fad63fff700", +"thread_info_addr" : "0x7fad5806c330", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7fad745b6a82", +"SP" : "0x7fad63ffec60", +"BP" : "0x5654f1ea4dc8" +}, +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x5fd4c7055", +"offset_rich_hash" : "0x5fd4c7256", +"crashed" : false, +"native_thread_id" : "0x7fad62d31700", +"thread_info_addr" : "0x7fad44000b20", +"thread_name" : "RequestBuilder ", +"ctx" : { +"IP" : "0x7fad745b400c", +"SP" : "0x7fad62d30280", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001e9e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ded", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x000d9" +} +, +{ +"is_managed" : "true", +"guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", +"token" : "0x6003bbb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x282000", +"timestamp" : "0xacb92ac4", +"il_offset" : "0x00067" +} +, +{ +"is_managed" : "true", +"guid" : "CC2AA03A-C5AD-4081-BF06-B04DDBD6FDB9", +"token" : "0x6004279", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x282000", +"timestamp" : "0xacb92ac4", +"il_offset" : "0x0004d" +} +, +{ +"is_managed" : "true", +"guid" : "18ACF4BA-4241-4D46-AA6B-A7C7CA733B1F", +"token" : "0x6001fd8", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x190000", +"timestamp" : "0xef7d8394", +"il_offset" : "0x0002e" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ec9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001ecb", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xad9e37b0d", +"offset_rich_hash" : "0xad9e37dbb", +"crashed" : false, +"native_thread_id" : "0x7fad61ad6700", +"thread_info_addr" : "0x7fad2c000b20", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7fad745b400c", +"SP" : "0x7fad61ad44a0", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001fe3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000084", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x000ef" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x600009d", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x0006e" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x600007b", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x0006d" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x0002a" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0000c" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x60047fa", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000039", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000166", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x00029" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000181", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x00001" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001f96", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00007" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001f94", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00021" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x6001f91", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "15C98672-4BDC-4802-9390-9469513CFDB3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x462000", +"timestamp" : "0xe2bf570a", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} +, +{ +"native_address" : "unregistered" +} + +] +} +] +} \ No newline at end of file