1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Inode based directory notification for Linux 4 * 5 * Copyright (C) 2005 John McCutchan 6 */ 7 #ifndef _LINUX_INOTIFY_H 8 #define _LINUX_INOTIFY_H 9 10 #include <uapi/linux/inotify.h> 11 12 #define ALL_INOTIFY_BITS (IN_ACCESS | IN_MODIFY | IN_ATTRIB | IN_CLOSE_WRITE | \ 13 IN_CLOSE_NOWRITE | IN_OPEN | IN_MOVED_FROM | \ 14 IN_MOVED_TO | IN_CREATE | IN_DELETE | \ 15 IN_DELETE_SELF | IN_MOVE_SELF | IN_UNMOUNT | \ 16 IN_Q_OVERFLOW | IN_IGNORED | IN_ONLYDIR | \ 17 IN_DONT_FOLLOW | IN_EXCL_UNLINK | IN_MASK_ADD | \ 18 IN_MASK_CREATE | IN_ISDIR | IN_ONESHOT) 19 20 #endif /* _LINUX_INOTIFY_H */ 21
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.