summaryrefslogtreecommitdiff
path: root/tools/wrk/src/config.h
blob: 82ed65036fb43846664f99b12d42251f69a97efd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef CONFIG_H
#define CONFIG_H

#if defined(__FreeBSD__) || defined(__APPLE__)
#define HAVE_KQUEUE
#elif defined(__sun)
#define HAVE_EVPORT
#elif defined(__linux__)
#define HAVE_EPOLL
#define _POSIX_C_SOURCE 200809L
#endif

#endif /* CONFIG_H */