[Lldb-commits] [PATCH] D136295: Fix exception description in lldb-vscode
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 20 02:41:22 PDT 2022
labath added a comment.
If you're explicitly checking for SIGABRT, then you might as well raise that signal directly (`raise(SIGABRT)`) instead of relying on the runtime to do it (in response to an unhandled exception). Or, if you want this to work on windows, then you'll need to adjust the expectation for the fact that this will be reported differently there (I don't know how, but it will definitely not be SIGABRT).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D136295/new/
https://reviews.llvm.org/D136295
More information about the lldb-commits
mailing list