[Lldb-commits] [lldb] [LLDB] Add support for the structured data plugins in lldb-server (PR #159457)
Walter Erquinigo via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 17 17:00:41 PDT 2025
================
@@ -1436,6 +1452,21 @@ GDBRemoteCommunicationServerLLGS::Handle_jLLDBTraceGetBinaryData(
return SendErrorResponse(bytes.takeError());
}
+GDBRemoteCommunication::PacketResult
+GDBRemoteCommunicationServerLLGS::Handle_qStructuredDataPlugins(
+ StringExtractorGDBRemote &packet) {
+ // Fail if we don't have a current process.
+ if (!m_current_process ||
+ (m_current_process->GetID() == LLDB_INVALID_PROCESS_ID))
+ return SendErrorResponse(68);
----------------
walter-erquinigo wrote:
I actually don't know what it means, but the entire file does that :(
https://github.com/llvm/llvm-project/pull/159457
More information about the lldb-commits
mailing list