comparison third_party/wrk/src/config.h @ 178:94705b5986b3

[ThirdParty] Added WRK and luajit for load testing.
author MrJuneJune <me@mrjunejune.com>
date Thu, 22 Jan 2026 20:10:30 -0800
parents
children
comparison
equal deleted inserted replaced
177:24fe8ff94056 178:94705b5986b3
1 #ifndef CONFIG_H
2 #define CONFIG_H
3
4 #if defined(__FreeBSD__) || defined(__APPLE__)
5 #define HAVE_KQUEUE
6 #elif defined(__linux__)
7 #define HAVE_EPOLL
8 #elif defined (__sun)
9 #define HAVE_EVPORT
10 #define _XPG6
11 #define __EXTENSIONS__
12 #include <stropts.h>
13 #include <sys/filio.h>
14 #include <sys/time.h>
15 #endif
16
17 #endif /* CONFIG_H */