jabberd2  2.2.16
mio/mio_kqueue.c
Go to the documentation of this file.
00001 /*
00002    MIO -- Managed Input/Output
00003    ---------------------------
00004 */
00005 
00006 #ifdef HAVE_CONFIG_H
00007 #   include <config.h>
00008 #endif
00009 
00010 #include "mio.h"
00011 
00012 
00013 #ifdef MIO_KQUEUE
00014 #include "mio_kqueue.h"
00015 #include "mio_impl.h"
00016 
00017 mio_t mio_kqueue_new(int maxfd)
00018 {
00019   return _mio_new(maxfd);
00020 }
00021 #endif