Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/IRunControl.java')
-rw-r--r--plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/IRunControl.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/IRunControl.java b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/IRunControl.java
index 3c2a0b94e..89b156220 100644
--- a/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/IRunControl.java
+++ b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/IRunControl.java
@@ -237,6 +237,12 @@ public interface IRunControl extends IService {
/** Object - error report that describes a reason why program counter of the context is not available */
STATE_PC_ERROR = "PCError",
+ /** Object - error report if last stepping operation failed to reach its destination */
+ STATE_STEP_ERROR = "StepError",
+
+ /** Boolean - true if the context is stopped by a function call injection */
+ STATE_FUNC_CALL = "FuncCall",
+
/** Boolean - true if the context is running in reverse */
STATE_REVERSING = "Reversing";

Back to the top