[Lldb-commits] [lldb] [lldb/Target] Delay image loading after corefile process creation (PR #70351)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 31 13:42:40 PDT 2023
================
@@ -614,6 +614,8 @@ class Process : public std::enable_shared_from_this<Process>,
return error;
}
+ virtual void DidLoadCore() {}
----------------
clayborg wrote:
I think it makes sense in the process plug-in landscape. We are attaching to a core file image from a process plug-in perspective. I would rather add a `DidLoadCore()` over renaming to `DidAttachOrLoadCore()` if we do need to make a change though.
https://github.com/llvm/llvm-project/pull/70351
More information about the lldb-commits
mailing list