diff options
author | Jason Molenda <jmolenda@apple.com> | 2013-05-11 03:09:05 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2013-05-11 03:09:05 +0000 |
commit | 2e56a2545eb8bef39b1190f5667d84c12329c312 (patch) | |
tree | cccaafdc6c6abfe95c7aa464d9a757ec8f82bfaf /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | 1b09836bc3b543a06486e8989ce081f274a380a3 (diff) | |
download | bcm5719-llvm-2e56a2545eb8bef39b1190f5667d84c12329c312.tar.gz bcm5719-llvm-2e56a2545eb8bef39b1190f5667d84c12329c312.zip |
Update ProcessKDP and ProcessMachCore to use ConstString plugin
names when specifying the DynamicLoaderDarwinKernel.
ProcessGDBRemote wasn't setting the dyld string any more; remove
the remaining code tracking the dyld plugin name altogether from
that process plugin.
llvm-svn: 181658
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 3475bab3bca..ff698be909b 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -203,7 +203,6 @@ ProcessGDBRemote::ProcessGDBRemote(Target& target, Listener &listener) : m_thread_create_bp_sp (), m_waiting_for_attach (false), m_destroy_tried_resuming (false), - m_dyld_plugin_name(), m_command_sp () { m_async_broadcaster.SetEventName (eBroadcastBitAsyncThreadShouldExit, "async thread should exit"); @@ -2962,7 +2961,7 @@ lldb_private::DynamicLoader * ProcessGDBRemote::GetDynamicLoader () { if (m_dyld_ap.get() == NULL) - m_dyld_ap.reset (DynamicLoader::FindPlugin(this, m_dyld_plugin_name.empty() ? NULL : m_dyld_plugin_name.c_str())); + m_dyld_ap.reset (DynamicLoader::FindPlugin(this, NULL)); return m_dyld_ap.get(); } |