[Lldb-commits] [lldb] Support single stopped event in lldb-dap (PR #98568)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Jul 12 09:24:47 PDT 2024
jeffreytan81 wrote:
> What is going to happen in this mode if I have 5 threads stop at breakpoints, and each have a breakpoint command that prints "I hit breakpoint X on thread Y". I'll see that in the console for all the threads that hit breakpoints. But what will I see when I look at the stop reasons for all those other threads I know must have stopped?
It depends on the IDE client and protocol. For example, "thread list" command will still list stop reason for each thread and the VSCode DAP protocol "threads" request can return "stop reason" for each thread so that when user switch UI to that thread, the stop reason is shown to the end user in VSCode UI.
https://github.com/llvm/llvm-project/pull/98568
More information about the lldb-commits
mailing list