diff options
author | Jim Ingham <jingham@apple.com> | 2013-12-18 01:24:33 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2013-12-18 01:24:33 +0000 |
commit | a6195b732d099384d34f60c205d88b05628905be (patch) | |
tree | 4f6f04f8f6ebdffefb343839f0d490572739778b /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | |
parent | c49406d18c84b5b0c4f90703e162d9496cf28db6 (diff) | |
download | bcm5719-llvm-a6195b732d099384d34f60c205d88b05628905be.tar.gz bcm5719-llvm-a6195b732d099384d34f60c205d88b05628905be.zip |
Fix a bug introduced in asynchronous packet sends. We were not setting the packet result, and so
it looked like the async packet send always failed.
<rdar://problem/15657157>
llvm-svn: 197543
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h index 3858bc26c0e..dcf638bb780 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h @@ -516,6 +516,7 @@ protected: lldb_private::Mutex m_async_mutex; lldb_private::Predicate<bool> m_async_packet_predicate; std::string m_async_packet; + PacketResult m_async_result; StringExtractorGDBRemote m_async_response; int m_async_signal; // We were asked to deliver a signal to the inferior process. bool m_interrupt_sent; |