Skip to content

Commit 576c4df

Browse files
[libc] disable epoll_pwait2 due to breakage (#80051)
It appears that sys_epoll_pwait2 isn't always available, so we need to add some sort of condition to enable it. This patch disables it until that happens.
1 parent a385c37 commit 576c4df

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libc/config/linux/x86_64/entrypoints.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,9 @@ set(TARGET_LIBC_ENTRYPOINTS
146146
# sys/epoll.h entrypoints
147147
libc.src.sys.epoll.epoll_wait
148148
libc.src.sys.epoll.epoll_pwait
149-
libc.src.sys.epoll.epoll_pwait2
149+
# TODO: Need to check if pwait2 is available before providing.
150+
# https://github.com/llvm/llvm-project/issues/80060
151+
# libc.src.sys.epoll.epoll_pwait2
150152

151153
# sys/mman.h entrypoints
152154
libc.src.sys.mman.madvise

0 commit comments

Comments
 (0)