Commit bf160c7a authored by Ove Kaaven's avatar Ove Kaaven Committed by Alexandre Julliard

Restart interrupted select() (happens with -pg).

parent b6ca7a55
......@@ -179,7 +179,10 @@ void select_loop(void)
}
if (!ret) continue;
if (ret == -1) perror("select");
if (ret == -1) {
if (errno == EINTR) continue;
perror("select");
}
for (i = 0; i <= max_fd; i++)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment