diff options
| author | Adrian McCarthy <amccarth@google.com> | 2015-07-06 17:42:09 +0000 |
|---|---|---|
| committer | Adrian McCarthy <amccarth@google.com> | 2015-07-06 17:42:09 +0000 |
| commit | 5cbef0e79fd2b80f533563a934381b01cdc86d9e (patch) | |
| tree | 6e1293a1ba26fa5270a4852e76aa4708f3af167d /lldb/source/Plugins/Process/Windows/TargetThreadWindows.cpp | |
| parent | f3a493638fffbb8dede86cb50126f5ba24b3b78e (diff) | |
| download | bcm5719-llvm-5cbef0e79fd2b80f533563a934381b01cdc86d9e.tar.gz bcm5719-llvm-5cbef0e79fd2b80f533563a934381b01cdc86d9e.zip | |
Fix step over breakpoint on Windows (which was detected by TestCreateAfterAttach.py).
llvm-svn: 241475
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/TargetThreadWindows.cpp')
| -rw-r--r-- | lldb/source/Plugins/Process/Windows/TargetThreadWindows.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lldb/source/Plugins/Process/Windows/TargetThreadWindows.cpp b/lldb/source/Plugins/Process/Windows/TargetThreadWindows.cpp index f94a10442e3..e849a920cd0 100644 --- a/lldb/source/Plugins/Process/Windows/TargetThreadWindows.cpp +++ b/lldb/source/Plugins/Process/Windows/TargetThreadWindows.cpp @@ -52,10 +52,6 @@ TargetThreadWindows::RefreshStateAfterStop() void TargetThreadWindows::WillResume(lldb::StateType resume_state) { - Log *log(lldb_private::GetLogIfAllCategoriesSet (WINDOWS_LOG_THREAD)); - if (log) - log->Printf ("TargetThreadWindows::WillResume (tid = %" PRIi64 ") setting thread resume state to %s", - GetID(), StateAsCString(resume_state)); } void @@ -125,7 +121,7 @@ TargetThreadWindows::GetUnwinder() bool TargetThreadWindows::DoResume() { - StateType resume_state = GetResumeState(); + StateType resume_state = GetTemporaryResumeState(); StateType current_state = GetState(); if (resume_state == current_state) return true; |

