diff options
author | Pavel Labath <labath@google.com> | 2016-08-11 09:22:22 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-08-11 09:22:22 +0000 |
commit | 4dbab2135456194feedea96863380f0d01deeb85 (patch) | |
tree | ae3284e96f5b232bfd937136b76642af32350c52 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | |
parent | c018e4d665fbeaf74ed7d0236af47937174a5922 (diff) | |
download | llvm-4dbab2135456194feedea96863380f0d01deeb85.zip llvm-4dbab2135456194feedea96863380f0d01deeb85.tar.gz llvm-4dbab2135456194feedea96863380f0d01deeb85.tar.bz2 |
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
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp index 207260a..0933ada 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp @@ -3947,7 +3947,5 @@ void GDBRemoteCommunicationClient::OnRunPacketSent(bool first) { GDBRemoteClientBase::OnRunPacketSent(first); - if (first) - BroadcastEvent(eBroadcastBitRunPacketSent, NULL); m_curr_tid = LLDB_INVALID_THREAD_ID; } |