[Lldb-commits] [lldb] r278325 - Remove a double send of eRunPacketSent event
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 11 02:22:23 PDT 2016
Author: labath
Date: Thu Aug 11 04:22:22 2016
New Revision: 278325
URL: http://llvm.org/viewvc/llvm-project?rev=278325&view=rev
Log:
Remove a double send of eRunPacketSent event
I accidentaly added the send both to the base class and the derived class in my refactor. Fix
that.
Modified:
lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
Modified: lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp?rev=278325&r1=278324&r2=278325&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp Thu Aug 11 04:22:22 2016
@@ -3947,7 +3947,5 @@ void
GDBRemoteCommunicationClient::OnRunPacketSent(bool first)
{
GDBRemoteClientBase::OnRunPacketSent(first);
- if (first)
- BroadcastEvent(eBroadcastBitRunPacketSent, NULL);
m_curr_tid = LLDB_INVALID_THREAD_ID;
}
More information about the lldb-commits
mailing list