Nope, OS X kqueue is still broken...

This reverts commit 94c90385d2.
pull/2195/head
Nicholas Marriott 2020-04-22 12:18:11 +01:00
parent df1bce40f0
commit d4826aa1aa
1 changed files with 0 additions and 4 deletions

View File

@ -93,19 +93,15 @@ osdep_event_init(void)
{
struct event_base *base;
#ifndef __MAC_10_7
/*
* On OS X, kqueue and poll are both completely broken and don't
* work on anything except socket file descriptors (yes, really).
*/
setenv("EVENT_NOKQUEUE", "1", 1);
setenv("EVENT_NOPOLL", "1", 1);
#endif
base = event_init();
#ifndef __MAC_10_7
unsetenv("EVENT_NOKQUEUE");
unsetenv("EVENT_NOPOLL");
#endif
return (base);
}