================ @@ -327,6 +348,23 @@ serveConnection(const Socket::SocketProtocol &protocol, const std::string &name, std::unique_lock<std::mutex> lock(dap_sessions_mutex); dap_sessions.erase(&loop); std::notify_all_at_thread_exit(dap_sessions_condition, std::move(lock)); + + if (ttl > 0) { + // Start the countdown to kill the server at the end of each connection. + std::scoped_lock<std::mutex> lock(ttl_mutex); + MainLoopBase::TimePoint future = + std::chrono::steady_clock::now() + std::chrono::milliseconds(ttl); + // We don't need to take the max of `keep_alive_up_to` and `future`, + // because `future` must be the latest. + ttl_time_point = future; + g_loop.AddCallback( + [future](MainLoopBase &loop) { + if (ttl_time_point == future) { + loop.RequestTermination(); + } ---------------- walter-erquinigo wrote:
braces https://github.com/llvm/llvm-project/pull/156803 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits