From: Rich Felker Date: Sun, 16 Sep 2012 03:45:41 +0000 (-0400) Subject: add O_EXEC open mode X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=6d05d862975188039e648273ceab350d9ab5b69e;hp=93ea998c9c5a29cb34f3171f24f96d3cfe4f9cb6 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. --- 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