From b05bbc7f534eaf81508eaa4205bdbecfee275f9b Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 22 May 2025 01:18:37 +0200 Subject: [PATCH] Enable CURLOPT_NOSIGNAL. --- profiler/src/profiler/TracyLlmTools.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/profiler/src/profiler/TracyLlmTools.cpp b/profiler/src/profiler/TracyLlmTools.cpp index 7c2da8f0..0a59e98f 100644 --- a/profiler/src/profiler/TracyLlmTools.cpp +++ b/profiler/src/profiler/TracyLlmTools.cpp @@ -118,6 +118,7 @@ std::string TracyLlmTools::FetchWebPage( const std::string& url ) std::string buf; + curl_easy_setopt( curl, CURLOPT_NOSIGNAL, 1L ); curl_easy_setopt( curl, CURLOPT_URL, url.c_str() ); curl_easy_setopt( curl, CURLOPT_CA_CACHE_TIMEOUT, 604800L ); curl_easy_setopt( curl, CURLOPT_FOLLOWLOCATION, 1L );