aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/iomgr
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-06-01 08:32:13 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-06-01 08:32:13 -0700
commit9349c0a104337d7ebca3a9881d33312c7b65fb88 (patch)
treefe2434f48398d879a17f0ef09ce6cdf1a7bbb883 /src/core/iomgr
parentd96579661ddde65a8f47bab7cdd3c872f164ea11 (diff)
Update epoll to new vtable
Diffstat (limited to 'src/core/iomgr')
-rw-r--r--src/core/iomgr/pollset_multipoller_with_epoll.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/iomgr/pollset_multipoller_with_epoll.c b/src/core/iomgr/pollset_multipoller_with_epoll.c
index bd9361e229..05b522bbf2 100644
--- a/src/core/iomgr/pollset_multipoller_with_epoll.c
+++ b/src/core/iomgr/pollset_multipoller_with_epoll.c
@@ -143,6 +143,8 @@ static int multipoll_with_epoll_pollset_maybe_work(
return 1;
}
+static void multipoll_with_epoll_pollset_finish_shutdown(grpc_pollset *pollset) {}
+
static void multipoll_with_epoll_pollset_destroy(grpc_pollset *pollset) {
pollset_hdr *h = pollset->data.ptr;
grpc_wakeup_fd_destroy(&h->wakeup_fd);
@@ -158,7 +160,7 @@ static void epoll_kick(grpc_pollset *pollset) {
static const grpc_pollset_vtable multipoll_with_epoll_pollset = {
multipoll_with_epoll_pollset_add_fd, multipoll_with_epoll_pollset_del_fd,
multipoll_with_epoll_pollset_maybe_work, epoll_kick,
- multipoll_with_epoll_pollset_destroy};
+ multipoll_with_epoll_pollset_finish_shutdown, multipoll_with_epoll_pollset_destroy};
static void epoll_become_multipoller(grpc_pollset *pollset, grpc_fd **fds,
size_t nfds) {