diff options
author | Szabolcs Nagy <nsz@port70.net> | 2013-11-23 23:47:48 +0000 |
---|---|---|
committer | Szabolcs Nagy <nsz@port70.net> | 2013-11-23 23:47:48 +0000 |
commit | f7d348ec39ce31efdc4963eb4a8f16f48e5ef095 (patch) | |
tree | 4cdf203298e702c14239e45f182e98a06e5fede2 /arch/powerpc | |
parent | b0e9d5771162401a5328aec7e1e8a6744e531521 (diff) | |
download | musl-f7d348ec39ce31efdc4963eb4a8f16f48e5ef095.tar.gz |
add O_TMPFILE flag, new in linux 3.11
definition in linux:
#define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
where __O_TMPFILE and O_DIRECTORY are arch specific
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/bits/fcntl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/bits/fcntl.h b/arch/powerpc/bits/fcntl.h index b57bd57d..548e5741 100644 --- a/arch/powerpc/bits/fcntl.h +++ b/arch/powerpc/bits/fcntl.h @@ -15,6 +15,7 @@ #define O_DIRECT 0400000 #define O_LARGEFILE 0200000 #define O_NOATIME 01000000 +#define O_TMPFILE 020040000 #define O_NDELAY O_NONBLOCK #define F_DUPFD 0 |