[Lldb-commits] [lldb] [lldb][Windows] Don't cut the loader helper off after 250ms (PR #213010)

via lldb-commits lldb-commits at lists.llvm.org
Thu Jul 30 06:59:10 PDT 2026


================
@@ -422,6 +423,9 @@ uint32_t PlatformWindows::DoLoadImage(Process *process,
   // handle currently.
   options.SetTrapExceptions(false);
   options.SetTimeout(process->GetUtilityExpressionTimeout());
+  options.SetOneThreadTimeout(std::min<std::chrono::microseconds>(
+      std::chrono::microseconds(5),
----------------
Nerixyz wrote:

Should this be `std::chrono::seconds`? 5us sound wrong. Same below.

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


More information about the lldb-commits mailing list