namespace Core::Platform::PosixSocketSets

namespace PosixSocketSets {

// global functions

int select(
    SocketID highestSocket,
    fd_set* readList,
    fd_set* writeList,
    fd_set* errorList,
    int timeout_ms
);

} // namespace PosixSocketSets