aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
diff options
context:
space:
mode:
authorDavid Spickett <david.spickett@linaro.org>2023-11-28 09:39:16 +0000
committerDavid Spickett <david.spickett@linaro.org>2023-11-28 09:39:37 +0000
commitb0af8a1ede89e87f737f2a31b6a2e2491e38ac04 (patch)
treea40b53a4bea79c7b1c0b288d4daed2d8d91760a6 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
parent1459c627f0bc1a4938b5b6a7f4c2bdc1f3ec6a2c (diff)
downloadllvm-b0af8a1ede89e87f737f2a31b6a2e2491e38ac04.zip
llvm-b0af8a1ede89e87f737f2a31b6a2e2491e38ac04.tar.gz
llvm-b0af8a1ede89e87f737f2a31b6a2e2491e38ac04.tar.bz2
Revert "[lldb] [mostly NFC] Large WP foundation: WatchpointResources (#68845)"
...and follow ups. As it has caused test failures on Linux Arm and AArch64: https://lab.llvm.org/buildbot/#/builders/96/builds/49126 https://lab.llvm.org/buildbot/#/builders/17/builds/45824 ``` lldb-shell :: Subprocess/clone-follow-child-wp.test lldb-shell :: Subprocess/fork-follow-child-wp.test lldb-shell :: Subprocess/vfork-follow-child-wp.test ``` This reverts commit a6c62bf1a4717accc852463b664cd1012237d334, commit a0a1ff3ab40e347589b4e27d8fd350c600526735 and commit fc6b72523f3d73b921690a713e97a433c96066c6.
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
index c1ea1cc..f3787e7 100644
--- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
+++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
@@ -158,11 +158,9 @@ public:
Status DisableBreakpointSite(BreakpointSite *bp_site) override;
// Process Watchpoints
- Status EnableWatchpoint(lldb::WatchpointSP wp_sp,
- bool notify = true) override;
+ Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override;
- Status DisableWatchpoint(lldb::WatchpointSP wp_sp,
- bool notify = true) override;
+ Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
std::optional<uint32_t> GetWatchpointSlotCount() override;