* Handle EINTR in select().

This commit is contained in:
Eelco Dolstra 2007-02-22 18:15:29 +00:00
parent 27bb0ac7d2
commit ddde8e2f32
1 changed files with 3 additions and 3 deletions

View File

@ -69,9 +69,9 @@ static bool isFarSideClosed(int socket)
fd_set fds;
FD_ZERO(&fds);
FD_SET(socket, &fds);
if (select(socket + 1, &fds, 0, 0, &timeout) == -1)
throw SysError("select()");
while (select(socket + 1, &fds, 0, 0, &timeout) == -1)
if (errno != EINTR) throw SysError("select()");
if (!FD_ISSET(socket, &fds)) return false;