aboutsummaryrefslogtreecommitdiffstats
path: root/thread_pthread.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread_pthread.c')
-rw-r--r--thread_pthread.c21
1 files changed, 14 insertions, 7 deletions
diff --git a/thread_pthread.c b/thread_pthread.c
index cd0aef7095..4ae7e2abe4 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -1186,13 +1186,20 @@ consume_communication_pipe(void)
static char buff[CCP_READ_BUFF_SIZE];
ssize_t result;
- retry:
- result = read(timer_thread_pipe[0], buff, CCP_READ_BUFF_SIZE);
- if (result < 0) {
- switch (errno) {
- case EINTR: goto retry;
- default:
- rb_async_bug_errno("consume_communication_pipe: read\n", errno);
+ while (1) {
+ result = read(timer_thread_pipe[0], buff, sizeof(buff));
+ if (result == 0) {
+ return;
+ }
+ else if (result < 0) {
+ switch (errno) {
+ case EINTR:
+ continue; /* retry */
+ case EAGAIN:
+ return;
+ default:
+ rb_async_bug_errno("consume_communication_pipe: read\n", errno);
+ }
}
}
}