Searched defs:nfds_t (Results 1 - 1 of 1) sorted by relevance
/bionic/libc/include/ |
H A D | poll.h | 39 typedef unsigned int nfds_t; typedef 41 int poll(struct pollfd*, nfds_t, int); 42 int ppoll(struct pollfd*, nfds_t, const struct timespec*, const sigset_t*); 44 int __poll_chk(struct pollfd*, nfds_t, int, size_t); 45 int __poll_real(struct pollfd*, nfds_t, int) __RENAME(poll); 48 int __ppoll_chk(struct pollfd*, nfds_t, const struct timespec*, const sigset_t*, size_t); 49 int __ppoll_real(struct pollfd*, nfds_t, const struct timespec*, const sigset_t*) __RENAME(ppoll); 55 int poll(struct pollfd* fds, nfds_t fd_count, int timeout) { 71 int ppoll(struct pollfd* fds, nfds_t fd_count, const struct timespec* timeout, const sigset_t* mask) {
|
Completed in 486 milliseconds