[Lldb-commits] [lldb] r149957 - /lldb/tags/lldb-112/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
Greg Clayton
gclayton at apple.com
Mon Feb 6 18:18:35 PST 2012
Author: gclayton
Date: Mon Feb 6 20:18:35 2012
New Revision: 149957
URL: http://llvm.org/viewvc/llvm-project?rev=149957&view=rev
Log:
<rdar://problem/10810798>
Fixed a case where we couldn't attach to an iOS app after recent code changes.
Modified:
lldb/tags/lldb-112/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
Modified: lldb/tags/lldb-112/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/tags/lldb-112/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp?rev=149957&r1=149956&r2=149957&view=diff
==============================================================================
--- lldb/tags/lldb-112/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp (original)
+++ lldb/tags/lldb-112/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp Mon Feb 6 20:18:35 2012
@@ -147,6 +147,7 @@
{
// m_mach_process.UnregisterNotificationCallbacks (this);
Clear();
+ StopAsyncThread();
// We need to call finalize on the process before destroying ourselves
// to make sure all of the broadcaster cleanup goes as planned. If we
// destruct this class, then Process::~Process() might have problems
More information about the lldb-commits
mailing list