Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fd_util: added API documentation | Max Kellermann | 2009-11-08 | 1 | -0/+24 |
| | |||||
* | fd_util: unexport fd_set_cloexec() | Max Kellermann | 2009-11-08 | 1 | -3/+0 |
| | | | | This function is used only internally. | ||||
* | inotify: set close-on-exec flag | Max Kellermann | 2009-11-07 | 1 | -0/+3 |
| | | | | Added wrapper for inotify_init1() to fd_util.c. | ||||
* | set the close-on-exec flag on all file descriptors | Max Kellermann | 2009-11-07 | 1 | -0/+53 |
Added the "fd_util" library, which attempts to use the new thread-safe Linux system calls pipe2(), accept4() and the options O_CLOEXEC, SOCK_CLOEXEC. Without these, it falls back to FD_CLOEXEC, which is not thread safe. This is particularly important for the "pipe" output plugin (and others, such as JACK/PulseAudio), because we were heavily leaking file descriptors to child processes. |