mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
util.pposix: Ask for shared file descriptor table using rfork() on *BSD (fixes #412)
This commit is contained in:
parent
478e9b9327
commit
01a15bfbe2
1 changed files with 13 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue