diff options
author | Joseph Myers <joseph@codesourcery.com> | 2018-10-25 15:57:23 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2018-10-25 15:57:23 +0000 |
commit | fe61f17cfc18f17befca3280e828bb40e8c772b0 (patch) | |
tree | 3a27a533ced1d9bff3983cef9385ae46493fc42b /sysdeps/unix/sysv/linux/sys | |
parent | 7c5e34d7f1b8f8f5acd94c2b885ae13b85414dcd (diff) | |
download | glibc-fe61f17cfc18f17befca3280e828bb40e8c772b0.tar glibc-fe61f17cfc18f17befca3280e828bb40e8c772b0.tar.gz glibc-fe61f17cfc18f17befca3280e828bb40e8c772b0.tar.bz2 glibc-fe61f17cfc18f17befca3280e828bb40e8c772b0.zip |
Add IN_MASK_CREATE from Linux 4.19 to sys/inotify.h.
This patch adds the IN_MASK_CREATE macro from Linux 4.19 to
sys/inotify.h.
Tested for x86_64.
* sysdeps/unix/sysv/linux/sys/inotify.h (IN_MASK_CREATE): New
macro.
Diffstat (limited to 'sysdeps/unix/sysv/linux/sys')
-rw-r--r-- | sysdeps/unix/sysv/linux/sys/inotify.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/sys/inotify.h b/sysdeps/unix/sysv/linux/sys/inotify.h index 49cc374851..8f766baf3d 100644 --- a/sysdeps/unix/sysv/linux/sys/inotify.h +++ b/sysdeps/unix/sysv/linux/sys/inotify.h @@ -66,6 +66,7 @@ struct inotify_event #define IN_DONT_FOLLOW 0x02000000 /* Do not follow a sym link. */ #define IN_EXCL_UNLINK 0x04000000 /* Exclude events on unlinked objects. */ +#define IN_MASK_CREATE 0x10000000 /* Only create watches. */ #define IN_MASK_ADD 0x20000000 /* Add to the mask of an already existing watch. */ #define IN_ISDIR 0x40000000 /* Event occurred against dir. */ |