Remove EVENT_* variables from environment after initializing libevent so they

are not carried into child processes; from Henry Qin.
This commit is contained in:
Nicholas Marriott
2018-03-21 08:15:15 +00:00
parent c8a706117f
commit 50e3e3e72f
3 changed files with 19 additions and 3 deletions

View File

@ -193,10 +193,15 @@ osdep_get_cwd(int fd)
struct event_base *
osdep_event_init(void)
{
struct event_base *base;
/*
* On some versions of FreeBSD, kqueue doesn't work properly on tty
* file descriptors. This is fixed in recent FreeBSD versions.
*/
setenv("EVENT_NOKQUEUE", "1", 1);
return (event_init());
base = event_init();
unsetenv("EVENT_NOKQUEUE");
return (base);
}