Skip to content

Commit 940704c

Browse files
committed
[lldb] Fix CommunicationKDP following D133251
Add `m_bytes` and `m_bytes_mutex` to `CommunicationKDP`, following refactoring in D133251. Differential Revision: https://reviews.llvm.org/D133365
1 parent 405af8e commit 940704c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,8 @@ class CommunicationKDP : public lldb_private::Communication {
221221
// Classes that inherit from CommunicationKDP can see and modify these
222222
uint32_t m_addr_byte_size;
223223
lldb::ByteOrder m_byte_order;
224+
std::string m_bytes;
225+
std::recursive_mutex m_bytes_mutex;
224226
std::chrono::seconds m_packet_timeout;
225227
std::recursive_mutex m_sequence_mutex; // Restrict access to sending/receiving
226228
// packets to a single thread at a time

0 commit comments

Comments
 (0)