Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authoreutarass2010-10-19 20:25:39 +0000
committereutarass2010-10-19 20:25:39 +0000
commitc13332474272872d43f16af1ad8ce28fcb6dd85c (patch)
treeb36af234b122ad4deaab8d70a167e8048f9ae587 /docs
parent7fa1fb1e32d2443ef8218b4574aef73a23756d74 (diff)
downloadorg.eclipse.tcf-c13332474272872d43f16af1ad8ce28fcb6dd85c.tar.gz
org.eclipse.tcf-c13332474272872d43f16af1ad8ce28fcb6dd85c.tar.xz
org.eclipse.tcf-c13332474272872d43f16af1ad8ce28fcb6dd85c.zip
TCF Agent:
1. Added two new functions in context.h: context_plant_breakpoint() and context_unplant_breakpoint(). They allow the agent to use breakpoints implemented by underlying debug API, or to implement target/architecture specific breakpoints, like hardware breakpoints. 2. Implemented hardware breakpoints support for Windows. 3. Moved VxWorks specific code from breakpoints.c to context-vxworks.c
Diffstat (limited to 'docs')
-rw-r--r--docs/TCF Service - Breakpoints.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/TCF Service - Breakpoints.html b/docs/TCF Service - Breakpoints.html
index 6e33883bc..040bfe8ed 100644
--- a/docs/TCF Service - Breakpoints.html
+++ b/docs/TCF Service - Breakpoints.html
@@ -593,8 +593,8 @@ E &bull; Breakpoints &bull; contextRemoved &bull; <i>&lt;array of breakpoint IDs
* BreakpointType values
*/</font>
<font color=#7F0055>static final</font> String
- TYPE_RELATIVE = "Software",
- TYPE_ABSOLUTE = "Hardware",
+ TYPE_SOFTWARE = "Software",
+ TYPE_HARDWARE = "Hardware",
TYPE_AUTO = "Auto";
<font color=#3F5FBF>/**

Back to the top