[Lldb-commits] [PATCH] D56237: Implement GetLoadAddress for the Windows process plugin
Hui Huang via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 4 07:19:39 PST 2019
Hui added inline comments.
================
Comment at: source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp:82
+ // Second, try through the underlying platform.
+ load_addr = Host::GetProcessBaseAddress(m_process->GetID());
+ if (load_addr != LLDB_INVALID_ADDRESS)
----------------
Shall not come to this point for a remote process. Need to bail out ahead.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D56237/new/
https://reviews.llvm.org/D56237
More information about the lldb-commits
mailing list