[Lldb-commits] [lldb] [lldb][Windows] Synchronize on LOAD_DLL_DEBUG_EVENT in lldb-server (PR #203334)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 12 08:40:42 PDT 2026
================
@@ -249,6 +251,31 @@ void DebuggerThread::ContinueAsyncException(ExceptionResult result) {
m_exception_pred.SetValue(result, eBroadcastAlways);
}
+void DebuggerThread::ContinueAsyncDllEvent() {
+ Log *log = GetLog(WindowsLog::Process | WindowsLog::Event);
+ LLDB_LOG(log, "releasing parked DLL event for inferior process {0}.",
+ m_process.GetProcessId());
----------------
Nerixyz wrote:
This log will always show - even if no thread waits for the event.
https://github.com/llvm/llvm-project/pull/203334
More information about the lldb-commits
mailing list