Skip to content
Snippets Groups Projects
Commit f66c374d authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix openloop test

parent 51d5aa73
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ static grpc_error* eventfd_consume(grpc_wakeup_fd* fd_info) { ...@@ -60,7 +60,7 @@ static grpc_error* eventfd_consume(grpc_wakeup_fd* fd_info) {
do { do {
err = eventfd_read(fd_info->read_fd, &value); err = eventfd_read(fd_info->read_fd, &value);
} while (err < 0 && errno == EINTR); } while (err < 0 && errno == EINTR);
if (err < 0) { if (err < 0 && errno != EAGAIN) {
return GRPC_OS_ERROR(errno, "eventfd_read"); return GRPC_OS_ERROR(errno, "eventfd_read");
} }
return GRPC_ERROR_NONE; return GRPC_ERROR_NONE;
......
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