diff options
author | Szabolcs Nagy <nsz@port70.net> | 2019-08-12 18:30:00 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-09-11 10:40:31 -0400 |
commit | 81e795e1f1f51308c5c6129a4ed018200f1664d8 (patch) | |
tree | 1b8bb74883671a8c75e439b6f3a4039e9f8e8406 /include/fcntl.h | |
parent | cc1a53515b0058d1afe60a5a41daa047b745b896 (diff) | |
download | musl-81e795e1f1f51308c5c6129a4ed018200f1664d8.tar.gz musl-81e795e1f1f51308c5c6129a4ed018200f1664d8.tar.bz2 musl-81e795e1f1f51308c5c6129a4ed018200f1664d8.tar.xz musl-81e795e1f1f51308c5c6129a4ed018200f1664d8.zip |
fcntl.h: add AT_RECURSIVE from linux v5.2
apply open_tree with OPEN_TREE_CLONE call to the entire subtree, see
linux commit a07b20004793d8926f78d63eb5980559f7813404
vfs: syscall: Add open_tree(2) to reference or clone a mount
Diffstat (limited to 'include/fcntl.h')
-rw-r--r-- | include/fcntl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/fcntl.h b/include/fcntl.h index 6c793b28..b664cdc4 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -104,6 +104,7 @@ int posix_fallocate(int, off_t, off_t); #define AT_STATX_SYNC_AS_STAT 0x0000 #define AT_STATX_FORCE_SYNC 0x2000 #define AT_STATX_DONT_SYNC 0x4000 +#define AT_RECURSIVE 0x8000 #define FAPPEND O_APPEND #define FFSYNC O_SYNC |