Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2011-08-03 22:27:10 +0000
committereutarass2011-08-03 22:27:10 +0000
commit6cff684926058cde262b77b30dbb89550aa49924 (patch)
tree78c08a3395aec952884892df678f1931953fc71a /plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/model/TCFLaunch.java
parent8e89b1f6fffdacc46b6123e3f95abf7dd7bf3457 (diff)
downloadorg.eclipse.tcf-6cff684926058cde262b77b30dbb89550aa49924.tar.gz
org.eclipse.tcf-6cff684926058cde262b77b30dbb89550aa49924.tar.xz
org.eclipse.tcf-6cff684926058cde262b77b30dbb89550aa49924.zip
TCF Debugger: improved timing of view updates.
Diffstat (limited to 'plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/model/TCFLaunch.java')
-rw-r--r--plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/model/TCFLaunch.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/model/TCFLaunch.java b/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/model/TCFLaunch.java
index 6eecbfbdb..20604e3ac 100644
--- a/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/model/TCFLaunch.java
+++ b/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/model/TCFLaunch.java
@@ -1148,13 +1148,13 @@ public class TCFLaunch extends Launch {
synchronized (pending_clients) {
if (pending_clients.size() > 0) {
if (time - timestamp < actions_interval + 1000) {
- Protocol.invokeLater(50, this);
+ Protocol.invokeLater(20, this);
return;
}
pending_clients.clear();
}
- else if (time - pending_clients_timestamp < 10) {
- Protocol.invokeLater(time - pending_clients_timestamp, this);
+ else if (time < pending_clients_timestamp + 10) {
+ Protocol.invokeLater(pending_clients_timestamp + 10 - time, this);
return;
}
}

Back to the top