summaryrefslogtreecommitdiff
path: root/arch/mips/bits/fcntl.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-09-13 20:56:25 -0400
committerRich Felker <dalias@aerifal.cx>2012-09-13 20:56:25 -0400
commitb238b37a0f9d12f87dc9b7ce1ece4bcde566a45f (patch)
treeb6cb7b8118f355e77046eb388c2163b1d1d267c6 /arch/mips/bits/fcntl.h
parentcfc09b1ecf0c6981494fd73dffe234416f66af10 (diff)
downloadmusl-b238b37a0f9d12f87dc9b7ce1ece4bcde566a45f.tar.gz
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.
Diffstat (limited to 'arch/mips/bits/fcntl.h')
-rw-r--r--arch/mips/bits/fcntl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/bits/fcntl.h b/arch/mips/bits/fcntl.h
index 6795800d..6f912fb9 100644
--- a/arch/mips/bits/fcntl.h
+++ b/arch/mips/bits/fcntl.h
@@ -14,6 +14,8 @@
#define O_NOFOLLOW 0400000
#define O_NOATIME 01000000
#define O_CLOEXEC 02000000
+#define O_PATH 010000000
+#define O_SEARCH 010000000
#define O_NDELAY O_NONBLOCK