aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-10-18 09:27:15 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-10-18 09:27:15 -0700
commitd4a0eb281ce93c67689a2603eab88fbab53e30a9 (patch)
tree6d30a7f0edc9c3a9b64bfe22d0b8375e133e87dc /src
parent460c7ff7dadbf5ebf38a9b20d087eaa189bf7f91 (diff)
Flag protect epoll exclusive for now
Diffstat (limited to 'src')
-rw-r--r--src/core/lib/iomgr/ev_epollex_linux.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/ev_epollex_linux.cc b/src/core/lib/iomgr/ev_epollex_linux.cc
index c9e9fcae76..feda517b49 100644
--- a/src/core/lib/iomgr/ev_epollex_linux.cc
+++ b/src/core/lib/iomgr/ev_epollex_linux.cc
@@ -1411,6 +1411,10 @@ static const grpc_event_engine_vtable vtable = {
const grpc_event_engine_vtable *grpc_init_epollex_linux(
bool explicitly_requested) {
+ if (!explicitly_requested) {
+ return NULL;
+ }
+
if (!grpc_has_wakeup_fd()) {
return NULL;
}