mirror of
https://github.com/wg/wrk
synced 2026-06-13 11:43:34 +08:00
14 lines
250 B
C
14 lines
250 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#if defined(__FreeBSD__) || defined(__APPLE__)
|
|
#define HAVE_KQUEUE
|
|
#elif defined(__linux__)
|
|
#define HAVE_EPOLL
|
|
#define _POSIX_C_SOURCE 200809L
|
|
#elif defined (__sun)
|
|
#define HAVE_EVPORT
|
|
#endif
|
|
|
|
#endif /* CONFIG_H */
|