Home
last modified time | relevance | path

Searched refs:max_events (Results 1 – 1 of 1) sorted by relevance

/bionic/libc/bionic/
Dsys_epoll.cpp50 int epoll_pwait(int fd, epoll_event* events, int max_events, int timeout, const sigset_t* ss) { in epoll_pwait() argument
58 return epoll_pwait64(fd, events, max_events, timeout, ss_ptr); in epoll_pwait()
61 int epoll_pwait64(int fd, epoll_event* events, int max_events, int timeout, const sigset64_t* ss) { in epoll_pwait64() argument
62 return __epoll_pwait(fd, events, max_events, timeout, ss, sizeof(*ss)); in epoll_pwait64()
65 int epoll_wait(int fd, struct epoll_event* events, int max_events, int timeout) { in epoll_wait() argument
66 return epoll_pwait64(fd, events, max_events, timeout, nullptr); in epoll_wait()