diff options
author | eutarass | 2008-05-08 20:55:17 +0000 |
---|---|---|
committer | eutarass | 2008-05-08 20:55:17 +0000 |
commit | f9c20f3c2afef4cdfe9420fc01e823d8f3b5f348 (patch) | |
tree | 12b9bcb973a251c1cab4b84fd871602347c57c93 /plugins | |
parent | dd6fcd929d0e76b7237fdfc2af8c66a48fc3031d (diff) | |
download | org.eclipse.tcf-f9c20f3c2afef4cdfe9420fc01e823d8f3b5f348.tar.gz org.eclipse.tcf-f9c20f3c2afef4cdfe9420fc01e823d8f3b5f348.tar.xz org.eclipse.tcf-f9c20f3c2afef4cdfe9420fc01e823d8f3b5f348.zip |
Fixed intermittent errors in WIN32 version of context_attach() function.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/org.eclipse.tm.tcf.debug.ui/src/org/eclipse/tm/internal/tcf/debug/ui/launch/TCFSelfTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tm.tcf.debug.ui/src/org/eclipse/tm/internal/tcf/debug/ui/launch/TCFSelfTest.java b/plugins/org.eclipse.tm.tcf.debug.ui/src/org/eclipse/tm/internal/tcf/debug/ui/launch/TCFSelfTest.java index 8a456610d..561e5924c 100644 --- a/plugins/org.eclipse.tm.tcf.debug.ui/src/org/eclipse/tm/internal/tcf/debug/ui/launch/TCFSelfTest.java +++ b/plugins/org.eclipse.tm.tcf.debug.ui/src/org/eclipse/tm/internal/tcf/debug/ui/launch/TCFSelfTest.java @@ -766,7 +766,7 @@ class TCFSelfTest { ctx.resume(IRunControl.RM_RESUME, 1, new IRunControl.DoneCommand() { public void doneCommand(IToken token, Exception error) { if (cancel) return; - if (active_tests.get(this) == null) return; + if (active_tests.get(TestRCBP1.this) == null) return; if (threads.get(sc.id) == null) return; if (error != null) exit(error); } |