Fix darwin and windows builds broken by r294736

Update the platform-specific log classes to match the new interface.

llvm-svn: 294743
This commit is contained in:
Pavel Labath 2017-02-10 12:32:43 +00:00
parent 5f7e583b33
commit edfbda4984
4 changed files with 14 additions and 11 deletions

View File

@ -90,8 +90,9 @@ void ProcessKDPLog::DisableLog(const char **categories, Stream *feedback_strm) {
return;
}
Log *ProcessKDPLog::EnableLog(StreamSP &log_stream_sp, uint32_t log_options,
const char **categories, Stream *feedback_strm) {
Log *ProcessKDPLog::EnableLog(
const std::shared_ptr<llvm::raw_ostream> &log_stream_sp,
uint32_t log_options, const char **categories, Stream *feedback_strm) {
// Try see if there already is a log - that way we can reuse its settings.
// We could reuse the log in toto, but we don't know that the stream is the
// same.

View File

@ -39,10 +39,10 @@ public:
static void DisableLog(const char **categories,
lldb_private::Stream *feedback_strm);
static lldb_private::Log *EnableLog(lldb::StreamSP &log_stream_sp,
uint32_t log_options,
const char **categories,
lldb_private::Stream *feedback_strm);
static lldb_private::Log *
EnableLog(const std::shared_ptr<llvm::raw_ostream> &log_stream_sp,
uint32_t log_options, const char **categories,
lldb_private::Stream *feedback_strm);
static void ListLogCategories(lldb_private::Stream *strm);

View File

@ -109,8 +109,9 @@ void ProcessWindowsLog::DisableLog(const char **args, Stream *feedback_strm) {
return;
}
Log *ProcessWindowsLog::EnableLog(StreamSP &log_stream_sp, uint32_t log_options,
const char **args, Stream *feedback_strm) {
Log *ProcessWindowsLog::EnableLog(
std::shared_ptr<llvm::raw_ostream> &log_stream_sp, uint32_t log_options,
const char **args, Stream *feedback_strm) {
// Try see if there already is a log - that way we can reuse its settings.
// We could reuse the log in toto, but we don't know that the stream is the
// same.

View File

@ -51,9 +51,10 @@ public:
static void DisableLog(const char **args,
lldb_private::Stream *feedback_strm);
static lldb_private::Log *EnableLog(lldb::StreamSP &log_stream_sp,
uint32_t log_options, const char **args,
lldb_private::Stream *feedback_strm);
static lldb_private::Log *
EnableLog(const std::shared_ptr<llvm::raw_ostream> &log_stream_sp,
uint32_t log_options, const char **args,
lldb_private::Stream *feedback_strm);
static void ListLogCategories(lldb_private::Stream *strm);
};