diff options
author | Zachary Turner <zturner@google.com> | 2016-05-04 20:33:53 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-05-04 20:33:53 +0000 |
commit | 54fd7ff6db59368d22389dcf8b47db1534ec3710 (patch) | |
tree | 79a71805c0fe923f3b85716226d3f807cdb18fc0 /lldb/source/Plugins/Process/Windows/Live/DebuggerThread.cpp | |
parent | ec28fc349987fa9cd9a05680ea5e81d9a9b35ce3 (diff) | |
download | bcm5719-llvm-54fd7ff6db59368d22389dcf8b47db1534ec3710.tar.gz bcm5719-llvm-54fd7ff6db59368d22389dcf8b47db1534ec3710.zip |
Update for llvm change to add pdb namespace.
r268544 moves all PDB reading code into a pdb namespace,
so LLDB needs to be updated to take this into account.
llvm-svn: 268545
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/Live/DebuggerThread.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/Live/DebuggerThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Windows/Live/DebuggerThread.cpp b/lldb/source/Plugins/Process/Windows/Live/DebuggerThread.cpp index b5d2d002760..2823474cbd5 100644 --- a/lldb/source/Plugins/Process/Windows/Live/DebuggerThread.cpp +++ b/lldb/source/Plugins/Process/Windows/Live/DebuggerThread.cpp @@ -379,7 +379,7 @@ DebuggerThread::HandleExceptionEvent(const EXCEPTION_DEBUG_INFO &info, DWORD thr { WINLOG_IFANY(WINDOWS_LOG_EVENT | WINDOWS_LOG_EXCEPTION | WINDOWS_LOG_PROCESS, "Breakpoint exception is cue to detach from process 0x%x", - m_pid_to_detach); + m_pid_to_detach.load()); ::DebugActiveProcessStop(m_pid_to_detach); m_detached = true; } |