[llvm-branch-commits] [lldb] [lldb] Implement delayed breakpoints (PR #192971)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Mon Apr 27 13:58:38 PDT 2026
================
@@ -1546,25 +1563,27 @@ Process::GetBreakpointSiteList() const {
void Process::DisableAllBreakpointSites() {
m_breakpoint_site_list.ForEach([this](BreakpointSite *bp_site) -> void {
- DisableBreakpointSite(bp_site);
+ ExecuteBreakpointSiteAction(*bp_site, BreakpointAction::Disable);
});
}
Status Process::ClearBreakpointSiteByID(lldb::user_id_t break_id) {
----------------
jimingham wrote:
Why is it important that Clear be immediate?
https://github.com/llvm/llvm-project/pull/192971
More information about the llvm-branch-commits
mailing list