From 6d05d862975188039e648273ceab350d9ab5b69e Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 15 Sep 2012 23:45:41 -0400 Subject: [PATCH] add O_EXEC open mode the linux O_PATH mode provides the necessary semantics for both the O_SEARCH and O_EXEC modes defined and required by POSIX 2008. --- arch/arm/bits/fcntl.h | 1 + arch/i386/bits/fcntl.h | 1 + arch/mips/bits/fcntl.h | 1 + arch/x86_64/bits/fcntl.h | 1 + 4 files changed, 4 insertions(+) diff --git a/arch/arm/bits/fcntl.h b/arch/arm/bits/fcntl.h index 7e746026..c0afa615 100644 --- a/arch/arm/bits/fcntl.h +++ b/arch/arm/bits/fcntl.h @@ -11,6 +11,7 @@ #define O_NOFOLLOW 0100000 #define O_CLOEXEC 02000000 #define O_SEARCH 010000000 +#define O_EXEC 010000000 #define O_ASYNC 020000 #define O_DIRECT 0200000 diff --git a/arch/i386/bits/fcntl.h b/arch/i386/bits/fcntl.h index 6325a332..04b7484c 100644 --- a/arch/i386/bits/fcntl.h +++ b/arch/i386/bits/fcntl.h @@ -11,6 +11,7 @@ #define O_NOFOLLOW 0400000 #define O_CLOEXEC 02000000 #define O_SEARCH 010000000 +#define O_EXEC 010000000 #define O_ASYNC 020000 #define O_DIRECT 040000 diff --git a/arch/mips/bits/fcntl.h b/arch/mips/bits/fcntl.h index 6f912fb9..ad847f08 100644 --- a/arch/mips/bits/fcntl.h +++ b/arch/mips/bits/fcntl.h @@ -16,6 +16,7 @@ #define O_CLOEXEC 02000000 #define O_PATH 010000000 #define O_SEARCH 010000000 +#define O_EXEC 010000000 #define O_NDELAY O_NONBLOCK diff --git a/arch/x86_64/bits/fcntl.h b/arch/x86_64/bits/fcntl.h index c02b0b53..e8db7ae6 100644 --- a/arch/x86_64/bits/fcntl.h +++ b/arch/x86_64/bits/fcntl.h @@ -11,6 +11,7 @@ #define O_NOFOLLOW 0400000 #define O_CLOEXEC 02000000 #define O_SEARCH 010000000 +#define O_EXEC 010000000 #define O_ASYNC 020000 #define O_DIRECT 040000 -- 2.20.1