include/fcntl.h: add O_NOATIME flags

Signed-off-by: dongjiuzhu1 <dongjiuzhu1@xiaomi.com>
This commit is contained in:
dongjiuzhu1 2023-07-04 12:27:59 +08:00 committed by Xiang Xiao
parent afb473707f
commit d415b7df54
1 changed files with 1 additions and 0 deletions

View File

@ -54,6 +54,7 @@
#define O_CLOEXEC (1 << 10) /* Close on execute */
#define O_DIRECTORY (1 << 11) /* Must be a directory */
#define O_NOFOLLOW (1 << 12) /* Don't follow links */
#define O_NOATIME (1 << 18) /* Don't update the file last access time */
/* Unsupported, but required open flags */