From b238b37a0f9d12f87dc9b7ce1ece4bcde566a45f Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 13 Sep 2012 20:56:25 -0400 Subject: add O_PATH/O_SEARCH support to fcntl.h I'm not 100% sure that Linux's O_PATH meets the POSIX requirements for O_SEARCH, but it seems very close if not perfect. and old kernels ignore it, so O_SEARCH will still work as desired as long as the caller has read permissions to the directory. --- arch/x86_64/bits/fcntl.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'arch/x86_64/bits') diff --git a/arch/x86_64/bits/fcntl.h b/arch/x86_64/bits/fcntl.h index 9e07229e..c02b0b53 100644 --- a/arch/x86_64/bits/fcntl.h +++ b/arch/x86_64/bits/fcntl.h @@ -10,12 +10,14 @@ #define O_DIRECTORY 0200000 #define O_NOFOLLOW 0400000 #define O_CLOEXEC 02000000 +#define O_SEARCH 010000000 #define O_ASYNC 020000 #define O_DIRECT 040000 #define O_LARGEFILE 0 #define O_NOATIME 01000000 #define O_NDELAY O_NONBLOCK +#define O_PATH 010000000 #define F_DUPFD 0 #define F_GETFD 1 -- cgit v1.2.1