aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/ev_epoll1_linux.c
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2017-08-16 12:30:58 -0700
committerGravatar Sree Kuchibhotla <sreek@google.com>2017-08-16 12:30:58 -0700
commit54749da91bf07dbe9060e97659190942c567f124 (patch)
tree891ad3dec05499ffd7f631e445a48ca5a5652a2f /src/core/lib/iomgr/ev_epoll1_linux.c
parenta7cfb12d914a3d4ecc5daa3c0517c5d901937e85 (diff)
Enable epoll1 by default (and move epollsig as second choice)
Diffstat (limited to 'src/core/lib/iomgr/ev_epoll1_linux.c')
-rw-r--r--src/core/lib/iomgr/ev_epoll1_linux.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/lib/iomgr/ev_epoll1_linux.c b/src/core/lib/iomgr/ev_epoll1_linux.c
index 90e0ce36cd..695f0dea93 100644
--- a/src/core/lib/iomgr/ev_epoll1_linux.c
+++ b/src/core/lib/iomgr/ev_epoll1_linux.c
@@ -1043,12 +1043,6 @@ static const grpc_event_engine_vtable vtable = {
/* It is possible that GLIBC has epoll but the underlying kernel doesn't.
* Create a dummy epoll_fd to make sure epoll support is available */
const grpc_event_engine_vtable *grpc_init_epoll1_linux(bool explicit_request) {
- /* TODO(sreek): Temporarily disable this poller unless explicitly requested
- * via GRPC_POLL_STRATEGY */
- if (!explicit_request) {
- return NULL;
- }
-
if (!grpc_has_wakeup_fd()) {
return NULL;
}