X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=m4%2Fpoll.m4;fp=m4%2Fpoll.m4;h=0000000000000000000000000000000000000000;hp=bbbb221374ef8330a33855aaddbed7212d7cf51f;hb=c9b3436bd51a4dcf7d6cc6817d4c7a8ad99538d4;hpb=09735ea6055f959a9cac481268754f07d6f6eb9f diff --git a/m4/poll.m4 b/m4/poll.m4 deleted file mode 100644 index bbbb221..0000000 --- a/m4/poll.m4 +++ /dev/null @@ -1,24 +0,0 @@ -PSI_CHECK_POLL() { - PSI_CONFIG_POSIX(poll, poll.h) - - PSI_STRUCT(struct pollfd, [ - int fd, - short events, - short revents] - ) - - PSI_TYPE(nfds_t, uint) - - PSI_CONST(POLLIN, int) - PSI_CONST(POLLRDNORM, int) - PSI_CONST(POLLRDBAND, int) - PSI_CONST(POLLPRI, int) - PSI_CONST(POLLOUT, int) - PSI_CONST(POLLWRNORM, int) - PSI_CONST(POLLRWBAND, int) - PSI_CONST(POLLERR, int) - PSI_CONST(POLLHUP, int) - PSI_CONST(POLLNVAL, int) - - PSI_DECL(int poll, [(struct pollfd *fds, nfds_t nfds, int timeout)]) -}