summaryrefslogtreecommitdiff
path: root/src/missing.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-07-01 00:29:17 +0200
committerLennart Poettering <lennart@poettering.net>2010-07-01 00:29:17 +0200
commit4fd5948e74b776b6d68ba55f558da5f354179e52 (patch)
tree0bb54d1f5ac17f1de19e71357bd39e595732190c /src/missing.h
parent6398320759ce4ed84922bb28f715d3c6c66166c4 (diff)
socket: make various socket/pipe options configurable
Diffstat (limited to 'src/missing.h')
-rw-r--r--src/missing.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/missing.h b/src/missing.h
index 7db7d7d2e8..75bc5117f8 100644
--- a/src/missing.h
+++ b/src/missing.h
@@ -31,6 +31,18 @@
#define RLIMIT_RTTIME 15
#endif
+#ifndef F_LINUX_SPECIFIC_BASE
+#define F_LINUX_SPECIFIC_BASE 1024
+#endif
+
+#ifndef F_SETPIPE_SZ
+#define F_SETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 7)
+#endif
+
+#ifndef F_GETPIPE_SZ
+#define F_GETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 8)
+#endif
+
static inline int pivot_root(const char *new_root, const char *put_old) {
return syscall(SYS_pivot_root, new_root, put_old);
}