diff options
author | Adrian McCarthy <amccarth@google.com> | 2015-12-04 22:22:15 +0000 |
---|---|---|
committer | Adrian McCarthy <amccarth@google.com> | 2015-12-04 22:22:15 +0000 |
commit | 0c35cde9b1fd0e7b54e77e7ba14116af6aae0ea9 (patch) | |
tree | f71047ab9225277c30fa4cfe4a30d7596058c033 /lldb/source/Plugins/Process/Windows/MiniDump/ProcessWinMiniDump.h | |
parent | 072bff80362c24ae81a4e5a3feff2caa128aec10 (diff) | |
download | bcm5719-llvm-0c35cde9b1fd0e7b54e77e7ba14116af6aae0ea9.tar.gz bcm5719-llvm-0c35cde9b1fd0e7b54e77e7ba14116af6aae0ea9.zip |
Implement GetMemoryRegionInfo for mini dumps.
Differential Revision: http://reviews.llvm.org/D15218
llvm-svn: 254780
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/MiniDump/ProcessWinMiniDump.h')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/MiniDump/ProcessWinMiniDump.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/Windows/MiniDump/ProcessWinMiniDump.h b/lldb/source/Plugins/Process/Windows/MiniDump/ProcessWinMiniDump.h index c76179172e6..12864be3712 100644 --- a/lldb/source/Plugins/Process/Windows/MiniDump/ProcessWinMiniDump.h +++ b/lldb/source/Plugins/Process/Windows/MiniDump/ProcessWinMiniDump.h @@ -23,7 +23,7 @@ struct ThreadData; class ProcessWinMiniDump : public lldb_private::ProcessWindows { -public: + public: static lldb::ProcessSP CreateInstance (lldb::TargetSP target_sp, lldb_private::Listener &listener, @@ -84,7 +84,10 @@ public: lldb_private::ArchSpec GetArchitecture(); -protected: + lldb_private::Error + GetMemoryRegionInfo(lldb::addr_t load_addr, lldb_private::MemoryRegionInfo &range_info) override; + + protected: void Clear(); @@ -92,7 +95,7 @@ protected: UpdateThreadList(lldb_private::ThreadList &old_thread_list, lldb_private::ThreadList &new_thread_list) override; -private: + private: // Describes a range of memory captured in the mini dump. struct Range { lldb::addr_t start; // virtual address of the beginning of the range |