diff options
Diffstat (limited to 'lldb/tools/debugserver/source/MacOSX/MachThread.cpp')
-rw-r--r-- | lldb/tools/debugserver/source/MacOSX/MachThread.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/MachThread.cpp b/lldb/tools/debugserver/source/MacOSX/MachThread.cpp index 729f32fd7db..7d67b3accbe 100644 --- a/lldb/tools/debugserver/source/MacOSX/MachThread.cpp +++ b/lldb/tools/debugserver/source/MacOSX/MachThread.cpp @@ -687,6 +687,13 @@ MachThread::EnableHardwareWatchpoint (const DNBBreakpoint *wp) return INVALID_NUB_HW_INDEX; } +// Provide a chance to update the global view of the hardware watchpoint state. +void +MachThread::HardwareWatchpointStateChanged () +{ + m_arch_ap->HardwareWatchpointStateChanged(); +} + bool MachThread::DisableHardwareBreakpoint (const DNBBreakpoint *bp) { |