[Lldb-commits] [lldb] [lldb] Updated lldb-server to spawn the child process and share socket on Windows (PR #101283)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Wed Jul 31 01:48:51 PDT 2024


================
@@ -114,6 +120,218 @@ static Status save_socket_id_to_file(const std::string &socket_id,
   return status;
 }
 
+static GDBRemoteCommunicationServerPlatform::PortMap gdbserver_portmap;
+static std::mutex gdbserver_portmap_mutex;
+
+#if defined(_WIN32)
----------------
DavidSpickett wrote:

Do you think we will always have these large __WIN32 blocks, or if we go forward with your plan, will some of that become generic code once again?

https://github.com/llvm/llvm-project/pull/101283


More information about the lldb-commits mailing list