[Lldb-commits] [PATCH] D145377: [LLDB] Show sub type of memory tagging SEGV when reading a core file
David Spickett via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 9 01:34:10 PST 2023
DavidSpickett added inline comments.
================
Comment at: lldb/source/Plugins/Process/Utility/LinuxSignals.cpp:32
+ AddSignalCode(11, 8 /*SEGV_MTEAERR*/, "async tag check fault");
+ AddSignalCode(11, 9 /*SEGV_MTESERR*/, "sync tag check fault");
AddSignal(12, "SIGUSR2", false, true, true, "user defined signal 2");
----------------
See https://github.com/torvalds/linux/blob/6a98c9cae232800c319ed69e1063480d31430887/include/uapi/asm-generic/siginfo.h#L229, the codes apply to all architectures.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145377/new/
https://reviews.llvm.org/D145377
More information about the lldb-commits
mailing list