[Lldb-commits] [lldb] Add new API in SBTarget for loading core from SBFile (PR #71769)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Thu Nov 9 09:37:37 PST 2023
================
@@ -1469,6 +1468,14 @@ class Process : public std::enable_shared_from_this<Process>,
virtual bool IsLiveDebugSession() const { return true; };
+
+ /// Provide a way to retrieve the core dump file that is loaded for debugging.
+ /// Only available if IsLiveDebugSession() returns true.
----------------
bulbazord wrote:
Shouldn't it only be available if `IsLiveDebugSession` is false? You're debugging a core dump which isn't really a "live debug session" since you're examining the corpse of a process, no?
https://github.com/llvm/llvm-project/pull/71769
More information about the lldb-commits
mailing list