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