On 1/14/26 00:00, Michael Tokarev wrote:
epoll is in linux since 2.6. epoll_init1 has been
added in 2.6.27. There's no need to check for its
presence, including all other epoll-related syscalls.
Modern architectures don't have epoll_create(), only
epoll_create1(), so keep conditional around the former.
Signed-off-by: Michael Tokarev <[email protected]>
---
linux-user/syscall.c | 10 ++--------
linux-user/syscall_defs.h | 3 ---
2 files changed, 2 insertions(+), 11 deletions(-)
glibc 2.9 for epoll_create1; 2.3.2 for the others.
Reviewed-by: Richard Henderson <[email protected]>
r~