X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=poll%2Fpoll.c;h=c5aa1115918a999bb2cd0810450bf2a5d2917bbf;hb=1c012a73c8d584d485924348388c0975cdd71831;hp=7f47b758b1c654707c1eff74f6993b3e2fc9730c;hpb=2230ba7b89bbaa989de311f9d7ea6d6e2cd5a9b8;p=m6w6%2Flibmemcached diff --git a/poll/poll.c b/poll/poll.c index 7f47b758..c5aa1115 100644 --- a/poll/poll.c +++ b/poll/poll.c @@ -19,16 +19,16 @@ int poll(struct pollfd fds[], nfds_t nfds, int tmo) FD_ZERO(&writefds); FD_ZERO(&errorfds); - int maxfd = 0; + int maxfd= 0; - for (int x = 0; x < nfds; ++x) + for (nfds_t x= 0; x < nfds; ++x) { if (fds[x].events & (POLLIN | POLLOUT)) { #ifndef WIN32 if (fds[x].fd > maxfd) { - maxfd = fds[x].fd; + maxfd= fds[x].fd; } #endif if (fds[x].events & POLLIN) @@ -42,23 +42,23 @@ int poll(struct pollfd fds[], nfds_t nfds, int tmo) } } - struct timeval timeout = { .tv_sec = tmo / 1000, - .tv_usec= (tmo % 1000) * 1000 }; - struct timeval *tp = &timeout; + struct timeval timeout= { .tv_sec = tmo / 1000, + .tv_usec= (tmo % 1000) * 1000 }; + struct timeval *tp= &timeout; if (tmo == -1) { - tp = NULL; + tp= NULL; } - int ret = select(maxfd + 1, &readfds, &writefds, &errorfds, tp); + int ret= select(maxfd + 1, &readfds, &writefds, &errorfds, tp); if (ret <= 0) { return ret; } /* Iterate through all of them because I need to clear the revent map */ - for (int x = 0; x < nfds; ++x) + for (nfds_t x= 0; x < nfds; ++x) { - fds[x].revents = 0; + fds[x].revents= 0; if (FD_ISSET(fds[x].fd, &readfds)) { fds[x].revents |= POLLIN;