diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-05-23 22:34:34 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-05-23 22:34:34 +0000 |
commit | f9ef60d2369f0798e8b939ce1798a7a4f0234b40 (patch) | |
tree | e44c2a3fd3b7139748eab88d8480f146a2361883 /lldb/scripts/Python/interface | |
parent | 5ad41dab52dac54714ca5cefa64595f4edd12048 (diff) | |
download | bcm5719-llvm-f9ef60d2369f0798e8b939ce1798a7a4f0234b40.tar.gz bcm5719-llvm-f9ef60d2369f0798e8b939ce1798a7a4f0234b40.zip |
Add SBProcess::GetNumSupportedHardwareWatchpoints() API and export it through the Python scripting bridge.
Add/modify some test cases.
llvm-svn: 157353
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBProcess.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBProcess.i b/lldb/scripts/Python/interface/SBProcess.i index 2069adf2de0..049d2a1364a 100644 --- a/lldb/scripts/Python/interface/SBProcess.i +++ b/lldb/scripts/Python/interface/SBProcess.i @@ -282,6 +282,9 @@ public: GetDescription (lldb::SBStream &description); uint32_t + GetNumSupportedHardwareWatchpoints (lldb::SBError &error) const; + + uint32_t LoadImage (lldb::SBFileSpec &image_spec, lldb::SBError &error); lldb::SBError |