MCPcopy Create free account
hub / github.com/ARM-software/armnn / Poll

Function Poll

profiling/common/src/NetworkSockets.cpp:92–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90
91
92int 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
102arm::pipe::Socket Accept(Socket s, sockaddr* addr, socklen_t* addrlen, int flags)

Callers 2

ReadPacketMethod · 0.85
WaitForPacketMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected