diff options
| author | Zachary Turner <zturner@google.com> | 2014-12-01 23:13:52 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2014-12-01 23:13:52 +0000 |
| commit | e0d93f523b3d771f7d3a06b4e8b96e62437471a7 (patch) | |
| tree | d2331be8dfe76d681da18474bb734a483bbd5774 /lldb/source/Plugins/Process/Windows/ProcessWindows.cpp | |
| parent | e068d91824dbf2134f483640ad077b02eb8b8b05 (diff) | |
| download | bcm5719-llvm-e0d93f523b3d771f7d3a06b4e8b96e62437471a7.tar.gz bcm5719-llvm-e0d93f523b3d771f7d3a06b4e8b96e62437471a7.zip | |
Enable enabling and disabling breakpoints on Windows.
llvm-svn: 223089
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/ProcessWindows.cpp')
| -rw-r--r-- | lldb/source/Plugins/Process/Windows/ProcessWindows.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
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) { |

