diff options
author | Kim Alvefur <zash@zash.se> | 2016-05-25 21:35:09 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-05-25 21:35:09 +0200 |
commit | 713422034f373d676d484d3f40fee0667416a25a (patch) | |
tree | 3556e1c72692e7f3e51123d92fbdc1d6ed34e820 /util-src/pposix.c | |
parent | 4ba59d52f26e0fc37af41eecc501e21cd6b0aff4 (diff) | |
parent | 0fd7323ab79f69224bdd868ecabb2f3f6aed4e36 (diff) | |
download | prosody-713422034f373d676d484d3f40fee0667416a25a.tar.gz prosody-713422034f373d676d484d3f40fee0667416a25a.zip |
Merge 0.10->trunk
Diffstat (limited to 'util-src/pposix.c')
-rw-r--r-- | util-src/pposix.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/util-src/pposix.c b/util-src/pposix.c index 1b69852d..b48465d3 100644 --- a/util-src/pposix.c +++ b/util-src/pposix.c @@ -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) { |