| 90 | |
| 91 | |
| 92 | int Poll(PollFd* fds, nfds_t numFds, int timeout) |
| 93 | { |
| 94 | #if defined(__unix__) || defined(__APPLE__) |
| 95 | return poll(fds, numFds, timeout); |
| 96 | #elif defined(_MSC_VER) || defined(__MINGW32__) |
| 97 | return WSAPoll(fds, arm::pipe::numeric_cast<unsigned long>(numFds), timeout); |
| 98 | #endif |
| 99 | } |
| 100 | |
| 101 | |
| 102 | arm::pipe::Socket Accept(Socket s, sockaddr* addr, socklen_t* addrlen, int flags) |
no outgoing calls
no test coverage detected