add new F_OFD_* macros to fcntl.h (open file description locks)
authorSzabolcs Nagy <nsz@port70.net>
Mon, 8 Sep 2014 13:26:40 +0000 (15:26 +0200)
committerSzabolcs Nagy <nsz@port70.net>
Mon, 8 Sep 2014 13:35:26 +0000 (15:35 +0200)
open file description locks are inherited across fork and only auto
dropped after the last fd of the file description is closed, they can be
used to synchronize between threads that open separate file descriptions
for the same file.

new in linux 3.15 commit 0d3f7a2dd2f5cf9642982515e020c1aee2cf7af6

include/fcntl.h

index 2d8fa6e4d37306d8e5ae8972c73debd1b7864167..ff9fcb92fa39b88d337acb3d14895c0e44e57473 100644 (file)
@@ -46,6 +46,10 @@ int posix_fallocate(int, off_t, off_t);
 #define O_WRONLY  01
 #define O_RDWR    02
 
+#define F_OFD_GETLK 36
+#define F_OFD_SETLK 37
+#define F_OFD_SETLKW 38
+
 #define F_DUPFD_CLOEXEC 1030
 
 #define F_RDLCK 0