================ @@ -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 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
