diff options
author | Stephane Sezer <sas@cd80.net> | 2015-08-20 22:07:48 +0000 |
---|---|---|
committer | Stephane Sezer <sas@cd80.net> | 2015-08-20 22:07:48 +0000 |
commit | c6845a0dddb8dc521cec48677d64ab820744602d (patch) | |
tree | d056c0d6e532cdaba41aaf4cfbf6889608892094 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | |
parent | 4268d39436bf471bee6993efe9999f36cad4cf37 (diff) | |
download | bcm5719-llvm-c6845a0dddb8dc521cec48677d64ab820744602d.tar.gz bcm5719-llvm-c6845a0dddb8dc521cec48677d64ab820744602d.zip |
Understand absolute base addresses in ProcessGDBRemote::GetLoadedModuleList.
Summary:
This is useful when dealing with Windows remote that use only the
qXfer:libraries command which returns absolute base addresses, as
opposed to qXfer:libraries-svr4 which returns relative offsets for
module bases.
Reviewers: clayborg, zturner, ADodds
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D12204
llvm-svn: 245625
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h index 746c127ec1d..f7bbb445374 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h @@ -452,7 +452,7 @@ protected: GetLoadedModuleList (GDBLoadedModuleInfoList &); lldb::ModuleSP - LoadModuleAtAddress (const FileSpec &file, lldb::addr_t base_addr); + LoadModuleAtAddress (const FileSpec &file, lldb::addr_t base_addr, bool value_is_offset); private: //------------------------------------------------------------------ |