util.pposix: Ask for shared file descriptor table using rfork() on *BSD (fixes #412)

This commit is contained in:
Kim Alvefur 2016-05-25 21:34:34 +02:00
parent 478e9b9327
commit 01a15bfbe2

View file

@ -49,6 +49,19 @@
#define WITH_MALLINFO
#endif
#if defined(RFPROC) && defined(EV_SET)
/*
* On *BSD, calling fork() is equivalent to rfork(RFPROC | RFFDG).
*
* RFFDG being set means that the file descriptor table is copied,
* otherwise it's shared. We want the later, otherwise libevent gets
* messed up.
*
* See issue #412
*/
#define fork() rfork(RFPROC)
#endif
/* Daemonization support */
static int lc_daemonize(lua_State* L) {