diff options
author | Jim Ingham <jingham@apple.com> | 2011-10-28 23:14:11 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-10-28 23:14:11 +0000 |
commit | c6674fd597ad02f115a96405e1a1b0f65c7ba19c (patch) | |
tree | 2ebfd981e4f35df1626141cdd84eda2b1219f2dd /lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.h | |
parent | dba74af1b84b80ac1253c9888dce8fcfded7df23 (diff) | |
download | bcm5719-llvm-c6674fd597ad02f115a96405e1a1b0f65c7ba19c.tar.gz bcm5719-llvm-c6674fd597ad02f115a96405e1a1b0f65c7ba19c.zip |
Added the ability for the target to specify Modules that will not be searched
when setting breakpoints, but only if no module is specified. The Darwin
platform uses this to not set breakpoints in dyld.
llvm-svn: 143249
Diffstat (limited to 'lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.h')
-rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.h b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.h index 38804edad18..9b3e771193e 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.h +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.h @@ -85,6 +85,9 @@ public: lldb_private::Listener &listener, lldb_private::Error &error); + virtual bool + ModuleIsExcludedForNonModuleSpecificSearches (lldb_private::Target &target, const lldb::ModuleSP &module_sp); + protected: lldb::PlatformSP m_remote_platform_sp; // Allow multiple ways to connect to a remote darwin OS |