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;
}
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits