aboutsummaryrefslogtreecommitdiff
path: root/src/fd_util.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2011-07-01 10:50:15 +0200
committerMax Kellermann <max@duempel.org>2011-07-01 10:50:15 +0200
commit08e2e2e7910bcf4f0d50fae8feb4431781fc9040 (patch)
treefb5d70880f5f101d907ff8b329b6e286593ff326 /src/fd_util.h
parent531c0067eca936119aca1bcb042befa6dcdab8b8 (diff)
fd_util: add function socketpair_cloexec_nonblock()
Diffstat (limited to 'src/fd_util.h')
-rw-r--r--src/fd_util.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/fd_util.h b/src/fd_util.h
index 494b39ed..96ad784d 100644
--- a/src/fd_util.h
+++ b/src/fd_util.h
@@ -89,6 +89,13 @@ pipe_cloexec_nonblock(int fd[2]);
int
socketpair_cloexec(int domain, int type, int protocol, int sv[2]);
+/**
+ * Wrapper for socketpair(), which sets the flags CLOEXEC and NONBLOCK
+ * (atomically if supported by the OS).
+ */
+int
+socketpair_cloexec_nonblock(int domain, int type, int protocol, int sv[2]);
+
#endif
/**