summaryrefslogtreecommitdiffstats
path: root/osdep-darwin.c
diff options
context:
space:
mode:
Diffstat (limited to 'osdep-darwin.c')
-rw-r--r--osdep-darwin.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/osdep-darwin.c b/osdep-darwin.c
index 9956ab45..5d69cdda 100644
--- a/osdep-darwin.c
+++ b/osdep-darwin.c
@@ -88,11 +88,17 @@ osdep_get_cwd(int fd)
struct event_base *
osdep_event_init(void)
{
+ struct event_base *base;
+
/*
* 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);
- return (event_init());
+
+ base = event_init();
+ unsetenv("EVENT_NOKQUEUE");
+ unsetenv("EVENT_NOPOLL");
+ return (base);
}