X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=m4%2Fsys_select.m4;fp=m4%2Fsys_select.m4;h=7ae010e379a5491bb272919c4055442a4a17b0a6;hp=0000000000000000000000000000000000000000;hb=4b5ceb304b924c50eaf8263ad394493ff806fed4;hpb=b4508f6b917660970f887894a6aaed6c220a2c72 diff --git a/m4/sys_select.m4 b/m4/sys_select.m4 new file mode 100644 index 0000000..7ae010e --- /dev/null +++ b/m4/sys_select.m4 @@ -0,0 +1,17 @@ +AC_DEFUN(PSI_CHECK_SYS_SELECT, [ + AC_CHECK_HEADERS(sys/select.h) + + PSI_STRUCT(fd_set, []) + + PSI_CONST(FD_SETSIZE, int) + + PSI_MACRO(void FD_CLEAR, [(int fd, fd_set *s)]) + PSI_MACRO(void FD_COPY, [(fd_set *s1, fd_set *s2)]) + PSI_MACRO(void FD_CLR, [(int fd, fd_set *s)]) + PSI_MACRO(void FD_SET, [(int fd, fd_set *s)]) + PSI_MACRO(int FD_ISSET, [(int fd, fd_set *s)]) + PSI_MACRO(void FD_ZERO, [(fd_set *s)]) + + PSI_DECL(int select, [(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *timeout)]) + dnl PSI_DECL(int pselect, [(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *timeout, sigset_t *sigmask)]) +]) \ No newline at end of file