aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/ev_posix.c
diff options
context:
space:
mode:
authorGravatar Ken Payson <kpayson@google.com>2016-09-29 09:15:49 -0700
committerGravatar Ken Payson <kpayson@google.com>2016-09-29 09:15:49 -0700
commite02c7ed37b1f98ed95b8f47e053d4a617fd7c530 (patch)
treee3dc2441cb1d262be2afa7c259af5cfce05e28b2 /src/core/lib/iomgr/ev_posix.c
parent31caabdead52000354c4fdd88b68bb3041ca8c4a (diff)
Broke cv polling into seperate engine
Diffstat (limited to 'src/core/lib/iomgr/ev_posix.c')
-rw-r--r--src/core/lib/iomgr/ev_posix.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/ev_posix.c b/src/core/lib/iomgr/ev_posix.c
index 6536672685..2fc8ccfa91 100644
--- a/src/core/lib/iomgr/ev_posix.c
+++ b/src/core/lib/iomgr/ev_posix.c
@@ -46,6 +46,7 @@
#include "src/core/lib/iomgr/ev_epoll_linux.h"
#include "src/core/lib/iomgr/ev_poll_and_epoll_posix.h"
+#include "src/core/lib/iomgr/ev_poll_cv_posix.h"
#include "src/core/lib/iomgr/ev_poll_posix.h"
#include "src/core/lib/support/env.h"
@@ -66,6 +67,7 @@ typedef struct {
static const event_engine_factory g_factories[] = {
{"epoll", grpc_init_epoll_linux},
{"poll", grpc_init_poll_posix},
+ {"poll-cv", grpc_init_poll_cv_posix},
{"legacy", grpc_init_poll_and_epoll_posix},
};