Commit 757aef1f authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Re-enable the epoll waiter

parent ec5a9a3d
......@@ -154,7 +154,8 @@ vwe_fini(struct waiter *w)
CAST_OBJ_NOTNULL(vwe, w->priv, VWE_MAGIC);
AZ(pthread_join(vwe->thread, &vp));
WRONG("Not Yet Implemented");
AZ(close(vwe->epfd));
FREE_OBJ(vwe);
}
/*--------------------------------------------------------------------*/
......
......@@ -43,7 +43,7 @@ static const struct waiter_impl *const waiter_impls[] = {
&waiter_kqueue,
#endif
#if defined(HAVE_EPOLL_CTL)
// &waiter_epoll,
&waiter_epoll,
#endif
#if defined(HAVE_PORT_CREATE)
&waiter_ports,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment