| 120 | if ( errno == EALREADY || errno == EINPROGRESS ) |
| 121 | { |
| 122 | struct pollfd pf = { 0 }; |
| 123 | pf.fd = fd; |
| 124 | pf.events = (POLLOUT|POLLERR|POLLHUP); |
| 125 | co_poll( co_get_epoll_ct(),&pf,1,200); |
nothing calls this directly
no outgoing calls
no test coverage detected