| 574 | extern int co_poll_inner( stCoEpoll_t *ctx,struct pollfd fds[], nfds_t nfds, int timeout, poll_pfn_t pollfunc); |
| 575 | |
| 576 | int poll(struct pollfd fds[], nfds_t nfds, int timeout) |
| 577 | { |
| 578 | |
| 579 | HOOK_SYS_FUNC( poll ); |
| 580 | |
| 581 | if( !co_is_enable_sys_hook() ) |
| 582 | { |
| 583 | return g_sys_poll_func( fds,nfds,timeout ); |
| 584 | } |
| 585 | |
| 586 | return co_poll_inner( co_get_epoll_ct(),fds,nfds,timeout, g_sys_poll_func); |
| 587 | |
| 588 | } |
| 589 | int setsockopt(int fd, int level, int option_name, |
| 590 | const void *option_value, socklen_t option_len) |
| 591 | { |