summaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-30 08:48:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-30 08:48:31 +0000
commit5b765f11580ed4325688357cdce00644cb9782c5 (patch)
treef731aae993a5b87d2c48b64d4d5b1786c87eba29 /win32
parent33d5fdaa6a219b9b8dd9757936397eb3a4ef926c (diff)
downloadruby-5b765f11580ed4325688357cdce00644cb9782c5.tar.gz
ruby-5b765f11580ed4325688357cdce00644cb9782c5.tar.xz
ruby-5b765f11580ed4325688357cdce00644cb9782c5.zip
* win32/win32.c (rb_w32_select): recalc the rest of timeout for each
iterations. [ruby-core:18015] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18262 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c38
1 files changed, 30 insertions, 8 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 1d667cfa8..9285b44a4 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -2143,7 +2143,7 @@ do_select(int nfds, fd_set *rd, fd_set *wr, fd_set *ex,
}
static inline int
-subst(struct timeval *rest, const struct timeval *wait)
+subtract(struct timeval *rest, const struct timeval *wait)
{
while (rest->tv_usec < wait->tv_usec) {
if (rest->tv_sec <= wait->tv_sec) {
@@ -2174,7 +2174,7 @@ compare(const struct timeval *t1, const struct timeval *t2)
#undef Sleep
int WSAAPI
rb_w32_select(int nfds, fd_set *rd, fd_set *wr, fd_set *ex,
- struct timeval *timeout)
+ struct timeval *timeout)
{
int r;
fd_set pipe_rd;
@@ -2183,11 +2183,29 @@ rb_w32_select(int nfds, fd_set *rd, fd_set *wr, fd_set *ex,
fd_set else_wr;
fd_set except;
int nonsock = 0;
+ struct timeval limit;
if (nfds < 0 || (timeout && (timeout->tv_sec < 0 || timeout->tv_usec < 0))) {
errno = EINVAL;
return -1;
}
+
+ if (timeout) {
+ if (timeout->tv_sec < 0 ||
+ timeout->tv_usec < 0 ||
+ timeout->tv_usec >= 1000000) {
+ errno = EINVAL;
+ return -1;
+ }
+ gettimeofday(&limit, NULL);
+ limit.tv_sec += timeout->tv_sec;
+ limit.tv_usec += timeout->tv_usec;
+ if (limit.tv_usec >= 1000000) {
+ limit.tv_usec -= 1000000;
+ limit.tv_sec++;
+ }
+ }
+
if (!NtSocketsInitialized) {
StartSockets();
}
@@ -2223,10 +2241,9 @@ rb_w32_select(int nfds, fd_set *rd, fd_set *wr, fd_set *ex,
struct timeval rest;
struct timeval wait;
struct timeval zero;
- if (timeout) rest = *timeout;
wait.tv_sec = 0; wait.tv_usec = 10 * 1000; // 10ms
zero.tv_sec = 0; zero.tv_usec = 0; // 0ms
- do {
+ for (;;) {
if (nonsock) {
// modifying {else,pipe,cons}_rd is safe because
// if they are modified, function returns immediately.
@@ -2242,8 +2259,7 @@ rb_w32_select(int nfds, fd_set *rd, fd_set *wr, fd_set *ex,
break;
}
else {
- struct timeval *dowait =
- compare(&rest, &wait) < 0 ? &rest : &wait;
+ struct timeval *dowait = &wait;
fd_set orig_rd;
fd_set orig_wr;
@@ -2257,10 +2273,16 @@ rb_w32_select(int nfds, fd_set *rd, fd_set *wr, fd_set *ex,
if (wr) *wr = orig_wr;
if (ex) *ex = orig_ex;
- // XXX: should check the time select spent
+ if (timeout) {
+ struct timeval now;
+ gettimeofday(&now, NULL);
+ rest = limit;
+ if (!subtract(&rest, &now)) break;
+ if (compare(&rest, &wait) < 0) dowait = &rest;
+ }
Sleep(dowait->tv_sec * 1000 + dowait->tv_usec / 1000);
}
- } while (!timeout || subst(&rest, &wait));
+ }
}
return r;