[llvm-branch-commits] [lldb] [lldb] Implement delayed breakpoints (PR #192971)
Felipe de Azevedo Piovezan via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Apr 28 00:27:58 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) {
----------------
felipepiovezan wrote:
I made anything that updates `m_breakpoint_site_list` be immediate, as other methods make decisions based on the status of that list.
https://github.com/llvm/llvm-project/pull/192971
More information about the llvm-branch-commits
mailing list