cover null default val
[m6w6/ext-psi] / m4 / posix / sys_select.m4
1 PSI_CHECK_SYS_SELECT() {
2 PSI_STRUCT(fd_set, [])
3
4 PSI_CONST(FD_SETSIZE, int)
5
6 PSI_DECL(void FD_CLEAR, [(int fd, fd_set *s)])
7 PSI_DECL(void FD_COPY, [(fd_set *s1, fd_set *s2)])
8 PSI_DECL(void FD_CLR, [(int fd, fd_set *s)])
9 PSI_DECL(void FD_SET, [(int fd, fd_set *s)])
10 PSI_DECL(int FD_ISSET, [(int fd, fd_set *s)])
11 PSI_DECL(void FD_ZERO, [(fd_set *s)])
12
13 PSI_DECL(int select, [(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *timeout)])
14 dnl PSI_DECL(int pselect, [(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *timeout, sigset_t *sigmask)])
15 }