This revision was automatically updated to reflect the committed changes. Closed by commit rG940704cc585e: [lldb] Fix CommunicationKDP following D133251 (authored by kastiglione).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D133365/new/ https://reviews.llvm.org/D133365 Files: lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.h Index: lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.h =================================================================== --- lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.h +++ lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.h @@ -221,6 +221,8 @@ // Classes that inherit from CommunicationKDP can see and modify these uint32_t m_addr_byte_size; lldb::ByteOrder m_byte_order; + std::string m_bytes; + std::recursive_mutex m_bytes_mutex; std::chrono::seconds m_packet_timeout; std::recursive_mutex m_sequence_mutex; // Restrict access to sending/receiving // packets to a single thread at a time
Index: lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.h =================================================================== --- lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.h +++ lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.h @@ -221,6 +221,8 @@ // Classes that inherit from CommunicationKDP can see and modify these uint32_t m_addr_byte_size; lldb::ByteOrder m_byte_order; + std::string m_bytes; + std::recursive_mutex m_bytes_mutex; std::chrono::seconds m_packet_timeout; std::recursive_mutex m_sequence_mutex; // Restrict access to sending/receiving // packets to a single thread at a time
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits