Commit 77dd6bc3 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Disable all waiters but the 'poll' waiter.

Don't worry, they'll will come back later.
parent c960cd16
......@@ -31,6 +31,7 @@
* write the session pointer to a pipe which the event engine monitors.
*/
#if 0
#include "config.h"
#if defined(HAVE_EPOLL_CTL)
......@@ -165,3 +166,4 @@ const struct waiter_impl waiter_epoll = {
};
#endif /* defined(HAVE_EPOLL_CTL) */
#endif
......@@ -31,6 +31,7 @@
* write the session pointer to a pipe which the event engine monitors.
*/
#if 0
#include "config.h"
#if defined(HAVE_KQUEUE)
......@@ -214,3 +215,4 @@ const struct waiter_impl waiter_kqueue = {
};
#endif /* defined(HAVE_KQUEUE) */
#endif
......@@ -29,6 +29,7 @@
*
*/
#if 0
#include "config.h"
#if defined(HAVE_PORT_CREATE)
......@@ -291,3 +292,4 @@ const struct waiter_impl waiter_ports = {
};
#endif /* defined(HAVE_PORT_CREATE) */
#endif
......@@ -39,6 +39,7 @@
#include "waiter/waiter_priv.h"
static const struct waiter_impl *const waiter_impls[] = {
#if 0
#if defined(HAVE_KQUEUE)
&waiter_kqueue,
#endif
......@@ -48,6 +49,7 @@ static const struct waiter_impl *const waiter_impls[] = {
#if defined(HAVE_PORT_CREATE)
&waiter_ports,
#endif
#endif
&waiter_poll,
NULL,
};
......
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