aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2012-02-21 02:23:08 +0000
committerJim Ingham <jingham@apple.com>2012-02-21 02:23:08 +0000
commit228063cd21c4e13aba0ef7a4522b1f32e3116c18 (patch)
tree73697c5ec27b8e8f282974db7db4f18de99b770b /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h
parent926410d2db727c5093bda792cb8b2025d7f02cc3 (diff)
downloadllvm-228063cd21c4e13aba0ef7a4522b1f32e3116c18.zip
llvm-228063cd21c4e13aba0ef7a4522b1f32e3116c18.tar.gz
llvm-228063cd21c4e13aba0ef7a4522b1f32e3116c18.tar.bz2
Add a logging mode that takes a callback and flush'es to that callback.
Also add SB API's to set this callback, and to enable the log channels. llvm-svn: 151018
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h
index 5e98403..4f6f39c 100644
--- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h
+++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h
@@ -39,10 +39,10 @@ public:
GetLogIfAllCategoriesSet(uint32_t mask = 0);
static void
- DisableLog (lldb_private::Args &args, lldb_private::Stream *feedback_strm);
+ DisableLog (const char **categories, lldb_private::Stream *feedback_strm);
static lldb::LogSP
- EnableLog (lldb::StreamSP &log_stream_sp, uint32_t log_options, lldb_private::Args &args, lldb_private::Stream *feedback_strm);
+ EnableLog (lldb::StreamSP &log_stream_sp, uint32_t log_options, const char **categories, lldb_private::Stream *feedback_strm);
static void
ListLogCategories (lldb_private::Stream *strm);