Merge pull request #4635 from ctiller/spam_cleanup

Spam cleanup
pull/4639/head
Sree Kuchibhotla 9 years ago
commit 93cdb180a6
  1. 4
      src/core/iomgr/pollset_multipoller_with_poll_posix.c

@ -144,7 +144,9 @@ static void multipoll_with_poll_pollset_maybe_work_and_unlock(
GRPC_SCHEDULING_END_BLOCKING_REGION;
if (r < 0) {
gpr_log(GPR_ERROR, "poll() failed: %s", strerror(errno));
if (errno != EINTR) {
gpr_log(GPR_ERROR, "poll() failed: %s", strerror(errno));
}
for (i = 2; i < pfd_count; i++) {
grpc_fd_end_poll(exec_ctx, &watchers[i], 0, 0);
}

Loading…
Cancel
Save