diff options
author | Greg Clayton <gclayton@apple.com> | 2010-12-04 02:39:47 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2010-12-04 02:39:47 +0000 |
commit | d46c87a1a86bfd945e7c83b8ab1a8e57aa37863e (patch) | |
tree | 9b39528ff18f7c7888d6f52b71a4ae83ce4940a2 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp | |
parent | f3eb96fccf373f429ff1fefb51ae5eacad95cf81 (diff) | |
download | bcm5719-llvm-d46c87a1a86bfd945e7c83b8ab1a8e57aa37863e.tar.gz bcm5719-llvm-d46c87a1a86bfd945e7c83b8ab1a8e57aa37863e.zip |
More reverting of the EOF stuff as the API was changed which we don't want to
do. Closing on EOF is an option that can be set on the
lldb_private::Communication or the lldb::SBCommunication objects after they
are created. Of course the EOF support isn't hooked up, so they don't do
anything at the moment, but they are left in so when the code is fixed, it
will be easy to get working again.
llvm-svn: 120885
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp index 394b55231a8..d19e19802da 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp @@ -32,7 +32,7 @@ using namespace lldb_private; // GDBRemoteCommunication constructor //---------------------------------------------------------------------- GDBRemoteCommunication::GDBRemoteCommunication() : - Communication("gdb-remote.packets", true), + Communication("gdb-remote.packets"), m_send_acks (true), m_rx_packet_listener ("gdbremote.rx_packet"), m_sequence_mutex (Mutex::eMutexTypeRecursive), |