aboutsummaryrefslogtreecommitdiff
path: root/src/fd_util.c
Commit message (Collapse)AuthorAge
* fd_util: support eventfd()Max Kellermann2013-01-10
|
* Merge branch 'v0.16.x'Max Kellermann2011-09-20
|\
| * fd_util: add function close_socket()Max Kellermann2011-09-20
| | | | | | | | Wrap close(), use closesocket() on WIN32/WinSock.
* | fd_util: add function socketpair_cloexec_nonblock()Max Kellermann2011-07-01
| |
* | copyright year 2011Max Kellermann2011-01-29
|/
* fd_util: work around aliasing warning in recvmsg_cloexec()Max Kellermann2010-09-23
|
* fd_util: add function dup_cloexec()Max Kellermann2010-08-03
| | | | | | Unfortunately, there's no "optimized" implementation here. We can't use Linux's proprietary system call dup3(), because it would require us to specify the new descriptor.
* fd_util: add function recvmsg_cloexec()Max Kellermann2010-08-03
|
* fd_util: add function socketpair_cloexec()Max Kellermann2010-08-03
|
* fd_util: fd_set_cloexec() returns a value on WIN32Max Kellermann2010-05-18
| | | | This function is empty on WIN32, but we need to return a value.
* fd_util: include ws2tcpip.h for socklen_tMax Kellermann2010-01-17
|
* fd_util: fixed WIN32 versions of pipe()Max Kellermann2010-01-17
| | | | Use the correct parameter name.
* Update copyright notices.Avuton Olrich2009-12-31
|
* fd_util: don't call fd_set_nonblock() if open() has failedMax Kellermann2009-11-11
| | | | This fixes an assertion failure.
* added missing config.h includes for extended LFS supportMax Kellermann2009-11-11
| | | | | All sources which might work with large files must include config.h, to get Large File Support on 32 bit platforms.
* 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: added missing NONBLOCK fallback for socket()Max Kellermann2009-11-08
|
* 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: 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.