summaryrefslogtreecommitdiff
path: root/src/fd_util.c
AgeCommit message (Collapse)Author
2009-12-31Update copyright notices.Avuton Olrich
2009-11-11fd_util: don't call fd_set_nonblock() if open() has failedMax Kellermann
This fixes an assertion failure.
2009-11-11added missing config.h includes for extended LFS supportMax Kellermann
All sources which might work with large files must include config.h, to get Large File Support on 32 bit platforms.
2009-11-10fd_util: removed creat_cloexec()Max Kellermann
Add a "mode" argument to open_cloexec() instead.
2009-11-10fd_util: added function pipe_cloexec()Max Kellermann
Same as pipe_cloexec_nonblock(), but doesn't set non-blocking mode.
2009-11-08fd_util: added missing NONBLOCK fallback for socket()Max Kellermann
2009-11-08fd_util: relicense under BSD 2-clauseMax Kellermann
We'll copy this code to libmpdclient, and that's easier if its license is BSD.
2009-11-08fd_util: added O_NONBLOCK functionsMax Kellermann
Changed the wrappers for pipe(), socket(), accept(). On WIN32, this does not work for pipe().
2009-11-08fd_util: unexport fd_set_cloexec()Max Kellermann
This function is used only internally.
2009-11-07inotify: set close-on-exec flagMax Kellermann
Added wrapper for inotify_init1() to fd_util.c.
2009-11-07set the close-on-exec flag on all file descriptorsMax Kellermann
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.