Skip to content

Commit

Permalink
Use booleans instead of bitmask args
Browse files Browse the repository at this point in the history
  • Loading branch information
kpayson64 committed Oct 11, 2016
1 parent 668a842 commit 7347ad8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/core/lib/iomgr/ev_poll_posix.c
Original file line number Diff line number Diff line change
Expand Up @@ -968,8 +968,7 @@ static grpc_error *pollset_work(grpc_exec_ctx *exec_ctx, grpc_pollset *pollset,
} else {
// Wake up all the file descriptors, if we have an invalid one
// we can identify it on the next pollset_work()
fd_end_poll(exec_ctx, &watchers[i], POLLIN_CHECK, POLLOUT_CHECK,
pollset);
fd_end_poll(exec_ctx, &watchers[i], 1, 1, pollset);
}
}
} else if (r == 0) {
Expand Down

0 comments on commit 7347ad8

Please sign in to comment.