2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
20#ifndef NET_SYSTEM_SELECT_H
21#define NET_SYSTEM_SELECT_H
23#ifndef DOXYGEN_SHOULD_SKIP_THIS
28#include <sys/select.h>
39 int select(
int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds,
struct timeval* timeout);
40 int pselect(
int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds,
const timespec* timeout,
const sigset_t* sigMask);
int pselect(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct timespec *timeout, const sigset_t *sigMask)
int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout)