aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr
diff options
context:
space:
mode:
authorGravatar Ken Payson <kpayson@google.com>2016-10-11 11:12:29 -0700
committerGravatar Ken Payson <kpayson@google.com>2016-10-11 11:12:29 -0700
commit7347ad8fe07b7a288572dd5543019440112f61b1 (patch)
treeca7e2c9e50c46167dc7a42d9741e1879387e6cc8 /src/core/lib/iomgr
parent668a842c1b7beed375989a5988583533017abae1 (diff)
Use booleans instead of bitmask args
Diffstat (limited to 'src/core/lib/iomgr')
-rw-r--r--src/core/lib/iomgr/ev_poll_posix.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/lib/iomgr/ev_poll_posix.c b/src/core/lib/iomgr/ev_poll_posix.c
index 3de329c645..1fead8a895 100644
--- a/src/core/lib/iomgr/ev_poll_posix.c
+++ b/src/core/lib/iomgr/ev_poll_posix.c
@@ -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) {