Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2016-02-03 18:31:13 +0000
committerEugene Tarassov2016-02-03 18:31:13 +0000
commit9e8e8ee4d8707b7731c434b0ec0de4f4d7295f65 (patch)
treedcfe87b53333515f84a067b1352fa97efd11cdf3 /plugins
parentca496e239868e30d53d57d73bbfb08a939282178 (diff)
downloadorg.eclipse.tcf-9e8e8ee4d8707b7731c434b0ec0de4f4d7295f65.tar.gz
org.eclipse.tcf-9e8e8ee4d8707b7731c434b0ec0de4f4d7295f65.tar.xz
org.eclipse.tcf-9e8e8ee4d8707b7731c434b0ec0de4f4d7295f65.zip
TCF Core: updated Run Control service documentation to match the implementation
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/IRunControl.java41
1 files changed, 24 insertions, 17 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 1b8cd2a6b..907c2865c 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
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2015 Wind River Systems, Inc. and others.
+ * Copyright (c) 2007, 2016 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -88,6 +88,22 @@ public interface IRunControl extends IService {
PROP_REG_ACCESS_TYPES = "RegAccessTypes";
/**
+ * Values of "RegAccessTypes".
+ * @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 */
+
+ /**
+ * 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 */
+
+ /**
* Context resume modes.
*/
static final int
@@ -230,22 +246,6 @@ public interface IRunControl extends IService {
REASON_ERROR = "Error";
- /**
- * Values of "RegAccessTypes".
- * @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 */
-
- /**
- * 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 -------------------------------- */
/**
@@ -331,6 +331,13 @@ public interface IRunControl extends IService {
*/
static final String RP_RANGE_END = "RangeEnd";
+ /**
+ * Resume command parameter:
+ * Boolean - allow to stop in a hidden code during stepping.
+ * @since 1.4
+ */
+ static final String RP_STEP_INTO_HIDDEN = "StepIntoHidden";
+
/* Commands ------------------------------------------------------------ */

Back to the top