Skip to content
Snippets Groups Projects
Commit 93cdb180 authored by Sree Kuchibhotla's avatar Sree Kuchibhotla
Browse files

Merge pull request #4635 from ctiller/spam_cleanup

Spam cleanup
parents bbaad2a7 4c219e6a
No related branches found
No related tags found
No related merge requests found
...@@ -144,7 +144,9 @@ static void multipoll_with_poll_pollset_maybe_work_and_unlock( ...@@ -144,7 +144,9 @@ static void multipoll_with_poll_pollset_maybe_work_and_unlock(
GRPC_SCHEDULING_END_BLOCKING_REGION; GRPC_SCHEDULING_END_BLOCKING_REGION;
if (r < 0) { 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++) { for (i = 2; i < pfd_count; i++) {
grpc_fd_end_poll(exec_ctx, &watchers[i], 0, 0); grpc_fd_end_poll(exec_ctx, &watchers[i], 0, 0);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment