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

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Stedfast <jeff@xamarin.com>2014-05-08 22:21:53 +0400
committerJeffrey Stedfast <jeff@xamarin.com>2014-05-08 22:21:53 +0400
commitf4c5d23a2495ada75802f2d211f9885fb606af4e (patch)
tree0894b5ff8d64e137dba13f6b68aeba057478df40 /Mono.Debugger.Soft
parent1a25a9b59caecac03ed242afac590e613fa08893 (diff)
[Mono.Debugger.Soft] Synced up with Mono
Diffstat (limited to 'Mono.Debugger.Soft')
-rw-r--r--Mono.Debugger.Soft/Mono.Debugger.Soft/ThreadMirror.cs5
-rw-r--r--Mono.Debugger.Soft/mono-git-revision2
2 files changed, 4 insertions, 3 deletions
diff --git a/Mono.Debugger.Soft/Mono.Debugger.Soft/ThreadMirror.cs b/Mono.Debugger.Soft/Mono.Debugger.Soft/ThreadMirror.cs
index 89adc85..38c733c 100644
--- a/Mono.Debugger.Soft/Mono.Debugger.Soft/ThreadMirror.cs
+++ b/Mono.Debugger.Soft/Mono.Debugger.Soft/ThreadMirror.cs
@@ -7,6 +7,7 @@ namespace Mono.Debugger.Soft
public class ThreadMirror : ObjectMirror
{
string name;
+ ThreadInfo info;
internal ThreadMirror (VirtualMachine vm, long id) : base (vm, id) {
}
@@ -53,8 +54,8 @@ namespace Mono.Debugger.Soft
public bool IsThreadPoolThread {
get {
- ThreadInfo info = vm.conn.Thread_GetInfo (id);
-
+ if (info == null)
+ info = vm.conn.Thread_GetInfo (id);
return info.is_thread_pool;
}
}
diff --git a/Mono.Debugger.Soft/mono-git-revision b/Mono.Debugger.Soft/mono-git-revision
index 440375c..e6f9fc6 100644
--- a/Mono.Debugger.Soft/mono-git-revision
+++ b/Mono.Debugger.Soft/mono-git-revision
@@ -1 +1 @@
-8d02439588590cca9e1f11f85b801537b08a807a
+9fe7e76b3d00a7239767bd7b9c0ade248c88e72d