From: Tom Lane Date: Sun, 7 Apr 2013 02:28:49 +0000 (-0400) Subject: In isolationtester, retry after EINTR return from select(2). X-Git-Tag: REL9_3_BETA1~128 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=faf4726c9fd5748ad25dbce55a7d31deeabe9866;p=postgresql In isolationtester, retry after EINTR return from select(2). Per report from Jaime Casanova. Very curious that no one else has seen this failure ... but the code is clearly wrong as-is. --- diff --git a/src/test/isolation/isolationtester.c b/src/test/isolation/isolationtester.c index c61d54c51f..f2807799d6 100644 --- a/src/test/isolation/isolationtester.c +++ b/src/test/isolation/isolationtester.c @@ -716,6 +716,8 @@ try_complete_step(Step * step, int flags) ret = select(sock + 1, &read_set, NULL, NULL, &timeout); if (ret < 0) /* error in select() */ { + if (errno == EINTR) + continue; fprintf(stderr, "select failed: %s\n", strerror(errno)); exit_nicely(); }