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.java12
1 files changed, 10 insertions, 2 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 c2d4e2bc9..1b8cd2a6b 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
@@ -235,8 +235,16 @@ public interface IRunControl extends IService {
* @since 1.3
*/
static final String
- REG_ACCESS_RD_RUNNING = "rd-running", /** Context supports reading registers while running */
- REG_ACCESS_WR_RUNNUNG = "wr-running"; /** Context supports writing registers while running */
+ REG_ACCESS_RD_RUNNING = "rd-running", /** Context supports reading registers while running */
+ REG_ACCESS_WR_RUNNUNG = "wr-running"; /** Context supports writing registers while running */
+
+ /**
+ * Values of "RegAccessTypes".
+ * @since 1.4
+ */
+ static final String
+ REG_ACCESS_RD_STOP = "rd-stop", /** Debugger should stop the context to read registers */
+ REG_ACCESS_WR_STOP = "wr-stop"; /** Debugger should stop the context to write registers */
/* Optional parameters of context state -------------------------------- */

Back to the top