first cut at event port support

This commit is contained in:
Dave Pacheco
2012-03-26 17:58:19 -07:00
committed by Pieter Noordhuis
parent e67d014d9a
commit 2aa1efb8a5
3 changed files with 270 additions and 5 deletions

View File

@ -44,13 +44,17 @@
/* Include the best multiplexing layer supported by this system.
* The following should be ordered by performances, descending. */
#ifdef HAVE_EPOLL
#include "ae_epoll.c"
#ifdef HAVE_EVPORT
#include "ae_evport.c"
#else
#ifdef HAVE_KQUEUE
#include "ae_kqueue.c"
#ifdef HAVE_EPOLL
#include "ae_epoll.c"
#else
#include "ae_select.c"
#ifdef HAVE_KQUEUE
#include "ae_kqueue.c"
#else
#include "ae_select.c"
#endif
#endif
#endif