Commit a8ea4bae authored by Jason Molenda's avatar Jason Molenda
Browse files

In ProcessKDP, if the remote connection is not EFI,

force this to be a DynamicLoaderDarwinKernel debug
session even if we didn't get back a load address
for the kernel.

llvm-svn: 181264
parent 9b3d2535
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -242,9 +242,12 @@ ProcessKDP::DoConnectRemote (Stream *strm, const char *remote_url)
                    {
                        m_dyld_plugin_name = DynamicLoaderStatic::GetPluginNameStatic();
                    }
                    else if (kernel_load_addr != LLDB_INVALID_ADDRESS)
                    else 
                    {
                        if (kernel_load_addr != LLDB_INVALID_ADDRESS)
                        {
                            m_kernel_load_addr = kernel_load_addr;
                        }
                        m_dyld_plugin_name = DynamicLoaderDarwinKernel::GetPluginNameStatic();
                    }