diff options
author | Tamas Berghammer <tberghammer@google.com> | 2015-05-27 13:34:04 +0000 |
---|---|---|
committer | Tamas Berghammer <tberghammer@google.com> | 2015-05-27 13:34:04 +0000 |
commit | 9c9ecce0770b3cc9f2237a28a7080553ec61bcb1 (patch) | |
tree | ea321d2e850b220ef2e51c5b520a30dd1ca2433b /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h | |
parent | f5c4dec750e424b217f794e250c48bdfc4100f1e (diff) | |
download | bcm5719-llvm-9c9ecce0770b3cc9f2237a28a7080553ec61bcb1.tar.gz bcm5719-llvm-9c9ecce0770b3cc9f2237a28a7080553ec61bcb1.zip |
Make log options uniform betwwen lldb-platform and lldb-gdbserver
This change also get rid of an unused Debugger instance in
GDBRemoteCommunicationServerLLGS and the command interpreter from
lldb-platform what was used only for enabling logging.
Differential revision: http://reviews.llvm.org/D9876
llvm-svn: 238319
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h index a47e9a19f0b..a5e2bbcc2be 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h @@ -38,8 +38,7 @@ public: //------------------------------------------------------------------ // Constructors and Destructors //------------------------------------------------------------------ - GDBRemoteCommunicationServerLLGS(const lldb::PlatformSP& platform_sp, - lldb::DebuggerSP& debugger_sp); + GDBRemoteCommunicationServerLLGS(const lldb::PlatformSP& platform_sp); virtual ~GDBRemoteCommunicationServerLLGS(); @@ -119,7 +118,6 @@ protected: lldb::tid_t m_continue_tid; Mutex m_debugged_process_mutex; NativeProcessProtocolSP m_debugged_process_sp; - lldb::DebuggerSP m_debugger_sp; Communication m_stdio_communication; lldb::StateType m_inferior_prev_state; lldb::DataBufferSP m_active_auxv_buffer_sp; |