mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-06 21:51:30 +00:00
23 lines
268 B
C
23 lines
268 B
C
#ifdef UWSGI_EVDIS
|
|
|
|
#include "uwsgi.h"
|
|
|
|
void evdis_loop(struct uwsgi_server *uwsgi) {
|
|
|
|
// populate event list
|
|
|
|
int kfd = kqueue();
|
|
if (kfd < 0) {
|
|
uwsgi_error("kqueue()");
|
|
exit(1);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
#warning "*** Event Dispatcher support is disabled ***"
|
|
#endif
|