[Lldb-commits] [lldb] [lldb][AIX] AIX Changes for MainLoop polling (PR #120378)
Dhruv Srivastava via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 23 06:16:33 PST 2024
================
@@ -159,6 +160,22 @@ MainLoopPosix::RunImpl::RunImpl(MainLoopPosix &loop) : loop(loop) {
read_fds.reserve(loop.m_read_fds.size());
}
+int MainLoopPosix::RunImpl::StartPoll(
+ std::optional<MainLoopPosix::TimePoint> point) {
+#if HAVE_PPOLL
----------------
DhruvSrivastavaX wrote:
I noticed that HAVE_PPOLL is always defined but only its value will either be 0 or 1, so added accordingly.
https://github.com/llvm/llvm-project/pull/120378
More information about the lldb-commits
mailing list