Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-02-24 22:05:14 +0000
committereutarass2010-02-24 22:05:14 +0000
commit3c71c9e409ad39a155a5378aaa4b3ba5c423a55e (patch)
tree351dd0505f3c91062d86364aeb2fd3598f465b86
parent58943add104a14bdb7fdd405b6f29783aa73d52a (diff)
downloadorg.eclipse.tcf-3c71c9e409ad39a155a5378aaa4b3ba5c423a55e.tar.gz
org.eclipse.tcf-3c71c9e409ad39a155a5378aaa4b3ba5c423a55e.tar.xz
org.eclipse.tcf-3c71c9e409ad39a155a5378aaa4b3ba5c423a55e.zip
TCF Agent: performance improvements:
1. OutputStream changed: write_stream() is made inlined; 2. proxy code changed to use block writes.
-rw-r--r--plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/IRegisters.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/IRegisters.java b/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/IRegisters.java
index 9ed2e05d2..067abe521 100644
--- a/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/IRegisters.java
+++ b/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/IRegisters.java
@@ -348,7 +348,7 @@ public interface IRegisters extends IService {
/** offset in the context, in bytes */
public final int offs;
- /** value size in byte */
+ /** value size in bytes */
public final int size;
public Location(String id, int offs, int size) {

Back to the top