forked from OSchip/llvm-project
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. llvm-svn: 278325
This commit is contained in:
parent
c018e4d665
commit
4dbab21354
|
@ -3947,7 +3947,5 @@ void
|
|||
GDBRemoteCommunicationClient::OnRunPacketSent(bool first)
|
||||
{
|
||||
GDBRemoteClientBase::OnRunPacketSent(first);
|
||||
if (first)
|
||||
BroadcastEvent(eBroadcastBitRunPacketSent, NULL);
|
||||
m_curr_tid = LLDB_INVALID_THREAD_ID;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue