aboutsummaryrefslogtreecommitdiff
path: root/src/fd_util.h
Commit message (Collapse)AuthorAge
* fd_util: removed creat_cloexec()Max Kellermann2009-11-10
| | | | Add a "mode" argument to open_cloexec() instead.
* fd_util: added function pipe_cloexec()Max Kellermann2009-11-10
| | | | Same as pipe_cloexec_nonblock(), but doesn't set non-blocking mode.
* fd_util: relicense under BSD 2-clauseMax Kellermann2009-11-08
| | | | | We'll copy this code to libmpdclient, and that's easier if its license is BSD.
* fd_util: added O_NONBLOCK functionsMax Kellermann2009-11-08
| | | | | Changed the wrappers for pipe(), socket(), accept(). On WIN32, this does not work for pipe().
* fd_util: fixed typo in API documentationMax Kellermann2009-11-08
|
* fd_util: added API documentationMax Kellermann2009-11-08
|
* fd_util: unexport fd_set_cloexec()Max Kellermann2009-11-08
| | | | This function is used only internally.
* inotify: set close-on-exec flagMax Kellermann2009-11-07
| | | | Added wrapper for inotify_init1() to fd_util.c.
* set the close-on-exec flag on all file descriptorsMax Kellermann2009-11-07
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.