[Lldb-commits] [lldb] Fix handling of auto_continue for stop hooks (PR #129622)

2025-04-01 Thread Julian Lettner via lldb-commits
https://github.com/yln closed https://github.com/llvm/llvm-project/pull/129622 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] Fix handling of auto_continue for stop hooks (PR #129622)

2025-04-01 Thread via lldb-commits
https://github.com/jimingham approved this pull request. LGTM https://github.com/llvm/llvm-project/pull/129622 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] Fix handling of auto_continue for stop hooks (PR #129622)

2025-04-01 Thread via lldb-commits
@@ -3109,7 +3104,10 @@ bool Target::RunStopHooks() { auto result = cur_hook_sp->HandleStop(exc_ctx, output_sp); switch (result) { case StopHook::StopHookResult::KeepStopped: jimingham wrote: Only KeepStopped. If any thread reports AlreadyCon

[Lldb-commits] [lldb] Fix handling of auto_continue for stop hooks (PR #129622)

2025-03-13 Thread Julian Lettner via lldb-commits
@@ -3109,7 +3104,10 @@ bool Target::RunStopHooks() { auto result = cur_hook_sp->HandleStop(exc_ctx, output_sp); switch (result) { case StopHook::StopHookResult::KeepStopped: yln wrote: Should the "auto continue" override only apply to `KeepSt