diff options
| author | Jim Ingham <jingham@apple.com> | 2011-09-21 01:17:13 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2011-09-21 01:17:13 +0000 |
| commit | 969795f14bed2c9af7167d0d07b234193c82034c (patch) | |
| tree | 2e4f23507b807790ac4806cb0957929194947afb /lldb/scripts/Python/interface/SBTarget.i | |
| parent | 699128e58af0015061f2da8477261aef6464dca9 (diff) | |
| download | llvm-969795f14bed2c9af7167d0d07b234193c82034c.zip llvm-969795f14bed2c9af7167d0d07b234193c82034c.tar.gz llvm-969795f14bed2c9af7167d0d07b234193c82034c.tar.bz2 | |
Add a new breakpoint type "break by source regular expression".
Fix the RegularExpression class so it has a real copy constructor.
Fix the breakpoint setting with multiple shared libraries so it makes
one breakpoint not one per shared library.
Add SBFileSpecList, to be used to expose the above to the SB interface (not done yet.)
llvm-svn: 140225
Diffstat (limited to 'lldb/scripts/Python/interface/SBTarget.i')
| -rw-r--r-- | lldb/scripts/Python/interface/SBTarget.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBTarget.i b/lldb/scripts/Python/interface/SBTarget.i index baa151c..aafc80b 100644 --- a/lldb/scripts/Python/interface/SBTarget.i +++ b/lldb/scripts/Python/interface/SBTarget.i @@ -372,6 +372,9 @@ public: BreakpointCreateByRegex (const char *symbol_name_regex, const char *module_name = NULL); lldb::SBBreakpoint + BreakpointCreateBySourceRegex (const char *source_regex, const lldb::SBFileSpec &source_file, const char *module_name = NULL); + + lldb::SBBreakpoint BreakpointCreateByAddress (addr_t address); uint32_t |
