diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-10-14 00:42:25 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-10-14 00:42:25 +0000 |
commit | 01a678603a0d39a52eff956b5eb5a83ccb7a9fa3 (patch) | |
tree | 093d868ffa0030e5ba0e2072501cfd068766826e /lldb/scripts/Python/interface/SBWatchpoint.i | |
parent | eafa9d50c2be7900d3cab2079123f1e91a54bcbd (diff) | |
download | bcm5719-llvm-01a678603a0d39a52eff956b5eb5a83ccb7a9fa3.tar.gz bcm5719-llvm-01a678603a0d39a52eff956b5eb5a83ccb7a9fa3.zip |
SBValue::Watch() and SBValue::WatchPointee() are now the official API for creating
a watchpoint for either the variable encapsulated by SBValue (Watch) or the pointee
encapsulated by SBValue (WatchPointee).
Removed SBFrame::WatchValue() and SBFrame::WatchLocation() API as a result of that.
Modified the watchpoint related test suite to reflect the change.
Plus replacing WatchpointLocation with Watchpoint throughout the code base.
There are still cleanups to be dome. This patch passes the whole test suite.
Check it in so that we aggressively catch regressions.
llvm-svn: 141925
Diffstat (limited to 'lldb/scripts/Python/interface/SBWatchpoint.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBWatchpoint.i | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lldb/scripts/Python/interface/SBWatchpoint.i b/lldb/scripts/Python/interface/SBWatchpoint.i index 5ddba459aaa..58a15e7d8d5 100644 --- a/lldb/scripts/Python/interface/SBWatchpoint.i +++ b/lldb/scripts/Python/interface/SBWatchpoint.i @@ -10,14 +10,13 @@ namespace lldb { %feature("docstring", -"Represents an instance of watchpoint location for a specific target program. +"Represents an instance of watchpoint for a specific target program. -A watchpoint location is determined by the address and the byte size that -resulted in this particular instantiation. Each watchpoint location has its -settable options. +A watchpoint is determined by the address and the byte size that resulted in +this particular instantiation. Each watchpoint has its settable options. -See also SBTarget.watchpoint_location_iter() for for example usage of iterating -through the watchpoint locations of the target." +See also SBTarget.watchpoint_iter() for for example usage of iterating through +the watchpoints of the target." ) SBWatchpoint; class SBWatchpoint { |