diff options
author | Greg Clayton <gclayton@apple.com> | 2011-10-13 18:08:26 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-10-13 18:08:26 +0000 |
commit | 1b282f9619f68a60d4b8f4dd0c68b0a07e1a1293 (patch) | |
tree | 272a2761ade581bba6c9641267cd4bd6902b85c7 /lldb/scripts/Python/interface/SBValue.i | |
parent | d5a9a3afafce0b1f2519250bd47701eab68edc46 (diff) | |
download | bcm5719-llvm-1b282f9619f68a60d4b8f4dd0c68b0a07e1a1293.tar.gz bcm5719-llvm-1b282f9619f68a60d4b8f4dd0c68b0a07e1a1293.zip |
Cleaned up the SBWatchpoint public API.
llvm-svn: 141876
Diffstat (limited to 'lldb/scripts/Python/interface/SBValue.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBValue.i | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBValue.i b/lldb/scripts/Python/interface/SBValue.i index 8792464b245..439e0abb7f7 100644 --- a/lldb/scripts/Python/interface/SBValue.i +++ b/lldb/scripts/Python/interface/SBValue.i @@ -278,6 +278,12 @@ public: lldb::SBFrame GetFrame(); + lldb::SBWatchpoint + Watch (bool resolve_location, bool read, bool write); + + lldb::SBWatchpoint + WatchPointee (bool resolve_location, bool read, bool write); + bool GetDescription (lldb::SBStream &description); |