[Lldb-commits] [lldb] r361539 - [gdb-remote] Fix more issues with thread_result_t
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Thu May 23 12:32:47 PDT 2019
Author: jdevlieghere
Date: Thu May 23 12:32:46 2019
New Revision: 361539
URL: http://llvm.org/viewvc/llvm-project?rev=361539&view=rev
Log:
[gdb-remote] Fix more issues with thread_result_t
More fixes needed to un-break the Windows bot.
Modified:
lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
Modified: lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp?rev=361539&r1=361538&r2=361539&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp Thu May 23 12:32:46 2019
@@ -541,7 +541,7 @@ bool GDBRemoteCommunication::DecompressP
#if defined(HAVE_LIBCOMPRESSION)
if (m_compression_type == CompressionType::ZlibDeflate ||
m_compression_type == CompressionType::LZFSE ||
- m_compression_type == CompressionType::LZ4 ||
+ m_compression_type == CompressionType::LZ4 ||
m_compression_type == CompressionType::LZMA) {
compression_algorithm compression_type;
if (m_compression_type == CompressionType::LZFSE)
@@ -578,7 +578,7 @@ bool GDBRemoteCommunication::DecompressP
if (decompressed_bufsize != ULONG_MAX && decompressed_buffer != nullptr) {
decompressed_bytes = compression_decode_buffer(
decompressed_buffer, decompressed_bufsize,
- (uint8_t *)unescaped_content.data(), unescaped_content.size(),
+ (uint8_t *)unescaped_content.data(), unescaped_content.size(),
m_decompression_scratch, compression_type);
}
}
@@ -925,7 +925,7 @@ GDBRemoteCommunication::ListenThread(lld
eConnectionStatusSuccess)
comm->SetConnection(nullptr);
}
- return nullptr;
+ return {};
}
Status GDBRemoteCommunication::StartDebugserverProcess(
Modified: lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp?rev=361539&r1=361538&r2=361539&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp Thu May 23 12:32:46 2019
@@ -3913,7 +3913,7 @@ thread_result_t ProcessGDBRemote::AsyncT
") thread exiting...",
__FUNCTION__, arg, process->GetID());
- return nullptr;
+ return {};
}
// uint32_t
More information about the lldb-commits
mailing list