jabberd2  2.2.17
mio_kqueue.c
Go to the documentation of this file.
1 /*
2  MIO -- Managed Input/Output
3  ---------------------------
4 */
5 
6 #ifdef HAVE_CONFIG_H
7 # include <config.h>
8 #endif
9 
10 #include "mio.h"
11 
12 
13 #ifdef MIO_KQUEUE
14 #include "mio_kqueue.h"
15 #include "mio_impl.h"
16 
17 mio_t mio_kqueue_new(int maxfd)
18 {
19  return _mio_new(maxfd);
20 }
21 #endif