From e0d93f523b3d771f7d3a06b4e8b96e62437471a7 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Mon, 1 Dec 2014 23:13:52 +0000 Subject: Enable enabling and disabling breakpoints on Windows. llvm-svn: 223089 --- lldb/source/Plugins/Process/Windows/ProcessWindows.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'lldb/source/Plugins/Process/Windows/ProcessWindows.cpp') diff --git a/lldb/source/Plugins/Process/Windows/ProcessWindows.cpp b/lldb/source/Plugins/Process/Windows/ProcessWindows.cpp index c43b3729b26..a577d202111 100644 --- a/lldb/source/Plugins/Process/Windows/ProcessWindows.cpp +++ b/lldb/source/Plugins/Process/Windows/ProcessWindows.cpp @@ -145,6 +145,18 @@ ProcessWindows::PutSTDIN(const char *buf, size_t buf_size, Error &error) return 0; } +Error +ProcessWindows::EnableBreakpointSite(BreakpointSite *bp_site) +{ + return EnableSoftwareBreakpoint(bp_site); +} + +Error +ProcessWindows::DisableBreakpointSite(BreakpointSite *bp_site) +{ + return DisableSoftwareBreakpoint(bp_site); +} + bool ProcessWindows::UpdateThreadList(ThreadList &old_thread_list, ThreadList &new_thread_list) { -- cgit v1.2.3