diff options
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h index 6273041825a..e9ab4df70f0 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h @@ -27,7 +27,7 @@ #include "lldb/Target/Process.h" #include "lldb/Target/Thread.h" -#include "GDBRemoteCommunication.h" +#include "GDBRemoteCommunicationClient.h" #include "Utility/StringExtractor.h" #include "GDBRemoteRegisterContext.h" @@ -212,7 +212,7 @@ public: protected: friend class ThreadGDBRemote; - friend class GDBRemoteCommunication; + friend class GDBRemoteCommunicationClient; friend class GDBRemoteRegisterContext; bool @@ -289,7 +289,7 @@ protected: void BuildDynamicRegisterInfo (bool force); - GDBRemoteCommunication & + GDBRemoteCommunicationClient & GetGDBRemote() { return m_gdb_comm; @@ -306,7 +306,7 @@ protected: lldb_private::Flags m_flags; // Process specific flags (see eFlags enums) lldb_private::Mutex m_stdio_mutex; // Multithreaded protection for stdio - GDBRemoteCommunication m_gdb_comm; + GDBRemoteCommunicationClient m_gdb_comm; lldb::pid_t m_debugserver_pid; lldb::thread_t m_debugserver_thread; StringExtractor m_last_stop_packet; |