blob: 2fe50c98c98f8751f89ad5feca7b901afb4b85a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#define ECB_NO_THREADS 1
#define EV_COMPAT3 0
#define EV_USE_SELECT 1
#define EV_USE_EPOLL 1
#define EV_USE_KQUEUE 1
#define EV_USE_PORT 1
//#define EV_USE_LINUXAIO 1
//#define EV_USE_IOURING 1
//#define EV_USE_TIMERFD 0
#define EV_PREPARE_ENABLE 1
#define EV_IDLE_ENABLE 1
#define EV_SIGNAL_ENABLE 1
#define EV_CHILD_ENABLE 1
#define EV_USE_STDEXCEPT 0
#define EV_CONFIG_H <config.h>
#include <config.h>
#if ENABLE_FRILLS
# define EV_FEATURES 1 | 2
#else
# define EV_FEATURES 0
# define NDEBUG
#endif
#include "ev++.h"
|