chiark / gitweb /
a couple of fixes to make llvm-analyze quiet
[elogind.git] / src / missing.h
index 02b31b743493195a076c70ed5ab7f8f203b62050..095bf1fe042ad8a694aa1c18eb9a2bb9816e1f57 100644 (file)
 #define TIOCVHANGUP 0x5437
 #endif
 
+#ifndef IP_TRANSPARENT
+#define IP_TRANSPARENT 19
+#endif
+
 static inline int pivot_root(const char *new_root, const char *put_old) {
         return syscall(SYS_pivot_root, new_root, put_old);
 }
@@ -168,4 +172,16 @@ struct btrfs_ioctl_vol_args {
 #define MS_MOVE 8192
 #endif
 
+#ifndef MS_PRIVATE
+#define MS_PRIVATE  (1 << 18)
+#endif
+
+static inline pid_t gettid(void) {
+        return (pid_t) syscall(SYS_gettid);
+}
+
+#ifndef SCM_SECURITY
+#define SCM_SECURITY 0x03
+#endif
+
 #endif