[Lldb-commits] [lldb] Refactor LLDB Breakpoint Event Notifications to centralize and eliminate code duplication (PR #164739)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 23 12:22:37 PDT 2025
================
@@ -1346,6 +1346,21 @@ class Target : public std::enable_shared_from_this<Target>,
const lldb_private::RegisterFlags &flags,
uint32_t byte_size);
+ /// Sends a breakpoint notification event if any listener is registered.
+ /// \param[in] bp
+ /// The breakpoint that was hit.
----------------
clayborg wrote:
The breakpoint doesn't need to be hit. This should probably be:
```
/// The breakpoint to send a nofication for.
```
https://github.com/llvm/llvm-project/pull/164739
More information about the lldb-commits
mailing list