diff options
Diffstat (limited to 'lldb/source/Core')
| -rw-r--r-- | lldb/source/Core/Communication.cpp | 6 | ||||
| -rw-r--r-- | lldb/source/Core/ConnectionSharedMemory.cpp | 7 |
2 files changed, 6 insertions, 7 deletions
diff --git a/lldb/source/Core/Communication.cpp b/lldb/source/Core/Communication.cpp index 557fb95df69..7d88a63eb23 100644 --- a/lldb/source/Core/Communication.cpp +++ b/lldb/source/Core/Communication.cpp @@ -191,7 +191,8 @@ Communication::Read (void *dst, size_t dst_len, uint32_t timeout_usec, Connectio lldb::ConnectionSP connection_sp (m_connection_sp); if (connection_sp) { - return connection_sp->Read (dst, dst_len, timeout_usec, status, error_ptr); + const bool read_full_buffer = false; + return connection_sp->Read(dst, dst_len, timeout_usec, read_full_buffer, status, error_ptr); } if (error_ptr) @@ -326,7 +327,8 @@ Communication::ReadFromConnection (void *dst, Error *error_ptr) { lldb::ConnectionSP connection_sp(m_connection_sp); - return (connection_sp ? connection_sp->Read(dst, dst_len, timeout_usec, status, error_ptr) : 0); + const bool read_full_buffer = false; + return (connection_sp ? connection_sp->Read(dst, dst_len, read_full_buffer, timeout_usec, status, error_ptr) : 0); } bool diff --git a/lldb/source/Core/ConnectionSharedMemory.cpp b/lldb/source/Core/ConnectionSharedMemory.cpp index 707644d36b1..857a280ebb1 100644 --- a/lldb/source/Core/ConnectionSharedMemory.cpp +++ b/lldb/source/Core/ConnectionSharedMemory.cpp @@ -94,11 +94,8 @@ ConnectionSharedMemory::Disconnect (Error *error_ptr) } size_t -ConnectionSharedMemory::Read (void *dst, - size_t dst_len, - uint32_t timeout_usec, - ConnectionStatus &status, - Error *error_ptr) +ConnectionSharedMemory::Read(void *dst, size_t dst_len, uint32_t timeout_usec, bool read_full_buffer, + ConnectionStatus &status, Error *error_ptr) { status = eConnectionStatusSuccess; return 0; |

