[Lldb-commits] [lldb] [llvm] [LLDB][Minidump] Support minidumps where there are multiple exception streams (PR #97470)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Jul 5 11:37:13 PDT 2024
================
@@ -109,7 +109,7 @@ class ProcessMinidump : public PostMortemProcess {
private:
lldb::DataBufferSP m_core_data;
llvm::ArrayRef<minidump::Thread> m_thread_list;
- const minidump::ExceptionStream *m_active_exception;
+ std::unordered_map<uint32_t, minidump::ExceptionStream> m_exceptions_by_tid;
----------------
jeffreytan81 wrote:
Store `const minidump::ExceptionStream&` instead.
https://github.com/llvm/llvm-project/pull/97470
More information about the lldb-commits
mailing list