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

Charles Zablit via lldb-commits lldb-commits at lists.llvm.org
Thu Jul 30 11:54:18 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),
----------------
charles-zablit wrote:

Yes, microseconds is a bit optimistic :)

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


More information about the lldb-commits mailing list