[Lldb-commits] [lldb] [lldb][Windows] Use LazyImport for WaitForDebugEventEx (PR #201118)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 2 06:43:46 PDT 2026
https://github.com/Nerixyz updated https://github.com/llvm/llvm-project/pull/201118
>From 02a11e747449a99120aa36a716c8ad0d376a3580 Mon Sep 17 00:00:00 2001
From: Nerixyz <nerixdev at outlook.de>
Date: Tue, 2 Jun 2026 15:18:40 +0200
Subject: [PATCH] [lldb][Windows] Use LazyImport for WaitForDebugEventEx
---
.../Process/Windows/Common/DebuggerThread.cpp | 23 ++++++-------------
1 file changed, 7 insertions(+), 16 deletions(-)
diff --git a/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp b/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp
index 8eff602f65c4c..f267178c1fd79 100644
--- a/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp
+++ b/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp
@@ -16,6 +16,7 @@
#include "lldb/Host/windows/AutoHandle.h"
#include "lldb/Host/windows/HostProcessWindows.h"
#include "lldb/Host/windows/HostThreadWindows.h"
+#include "lldb/Host/windows/LazyImport.h"
#include "lldb/Host/windows/ProcessLauncherWindows.h"
#include "lldb/Target/Process.h"
#include "lldb/Utility/FileSpec.h"
@@ -45,35 +46,25 @@ using namespace lldb_private;
typedef BOOL WINAPI WaitForDebugEventFn(LPDEBUG_EVENT, DWORD);
static WaitForDebugEventFn *g_wait_for_debug_event = nullptr;
-static WaitForDebugEventFn *GetWaitForDebugEventEx() {
- HMODULE h_kernel32 = LoadLibraryW(L"kernel32.dll");
- if (!h_kernel32) {
- llvm::Error err = llvm::errorCodeToError(
- std::error_code(GetLastError(), std::system_category()));
- LLDB_LOG_ERROR(GetLog(LLDBLog::Host), std::move(err),
- "Could not load kernel32: {0}");
- return nullptr;
- }
-
- return reinterpret_cast<WaitForDebugEventFn *>(
- GetProcAddress(h_kernel32, "WaitForDebugEventEx"));
-}
-
/// WaitForDebugEventEx is only available on Windows 10+. This lazily checks if
/// the function is available and falls back to WaitForDebugEvent if
/// unavailable. The -Ex version ensures correct forwarding of
/// OutputDebugStringW events.
static void InitializeWaitForDebugEvent() {
+ static LazyImport<WaitForDebugEventFn *> s_wait_for_debug_event_ex = {
+ L"kernel32.dll", "WaitForDebugEventEx"};
+
if (g_wait_for_debug_event)
return;
- g_wait_for_debug_event = GetWaitForDebugEventEx();
- if (!g_wait_for_debug_event) {
+ if (!s_wait_for_debug_event_ex) {
LLDB_LOG(
GetLog(LLDBLog::Host),
"WaitForDebugEventEx unavailable, using WaitForDebugEvent instead. "
"Unicode strings from OutputDebugStringW might show incorrectly.");
g_wait_for_debug_event = &WaitForDebugEvent;
+ } else {
+ g_wait_for_debug_event = *s_wait_for_debug_event_ex;
}
}
More information about the lldb-commits
mailing list