[Lldb-commits] [lldb] [LLDB][ProcessELFCore] Add Description to ProcessELFCore/ELFThread stop reasons (PR #110065)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 7 10:44:25 PDT 2024
================
@@ -145,6 +164,7 @@ struct ThreadData {
int signo = 0;
int code = 0;
int prstatus_sig = 0;
+ std::string description;
----------------
clayborg wrote:
We might be able to remove all of these and just replace these with a `lldb::StopInfoSP` and always either create a `lldb::StopInfoSP` for the thread when we create the thread instead of duplicating info from the `siginfo_t` struct here, we don't want to keep adding more fields here in the future.
https://github.com/llvm/llvm-project/pull/110065
More information about the lldb-commits
mailing list