[Lldb-commits] [lldb] [lldb-dap] Fix win32 build. (PR #135638)
Dmitry Vasilyev via lldb-commits
lldb-commits at lists.llvm.org
Mon Apr 14 10:08:54 PDT 2025
slydiman wrote:
@ashgti Did you test #130169 on Windows?
This patch will fix the building, but I'm not sure that it will work on Windows considering this:
```
// TODO: On Windows this should be a HANDLE, and wait should use
// WaitForMultipleObjects
typedef int WaitableHandle;
IOObject::WaitableHandle Socket::GetWaitableHandle() {
// TODO: On Windows, use WSAEventSelect
return m_socket;
}
```
It seems you need a Windows specific implementation.
https://github.com/llvm/llvm-project/pull/135638
More information about the lldb-commits
mailing list