diff options
author | Sree Kuchibhotla <sreek@google.com> | 2016-05-13 16:00:20 -0700 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2016-05-31 09:29:53 -0700 |
commit | f6a2adf0cfa14e473e05b6cb2d6b8fdc7667945b (patch) | |
tree | 90c4bad7a233cd3b7996ed83c8b3dc72468043ec /src | |
parent | ab7f10ed61c7e0d104ea839206d2cd0340f5fed8 (diff) |
Pollset_reset should not destroy the epoll_fd
Diffstat (limited to 'src')
-rw-r--r-- | src/core/lib/iomgr/ev_epoll_posix.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/lib/iomgr/ev_epoll_posix.c b/src/core/lib/iomgr/ev_epoll_posix.c index 03c544b30c..19465280a1 100644 --- a/src/core/lib/iomgr/ev_epoll_posix.c +++ b/src/core/lib/iomgr/ev_epoll_posix.c @@ -828,9 +828,6 @@ static void pollset_reset(grpc_pollset *pollset) { GPR_ASSERT(pollset->in_flight_cbs == 0); GPR_ASSERT(!pollset_has_workers(pollset)); GPR_ASSERT(pollset->idle_jobs.head == pollset->idle_jobs.tail); - - multipoll_with_epoll_pollset_destroy(pollset); - pollset->shutting_down = 0; pollset->called_shutdown = 0; pollset->kicked_without_pollers = 0; |