diff options
Diffstat (limited to 'net/onedrive/files/freebsd_inotify.d')
-rw-r--r-- | net/onedrive/files/freebsd_inotify.d | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/onedrive/files/freebsd_inotify.d b/net/onedrive/files/freebsd_inotify.d index 4892e990e7fb..54a4df019a6f 100644 --- a/net/onedrive/files/freebsd_inotify.d +++ b/net/onedrive/files/freebsd_inotify.d @@ -50,6 +50,7 @@ enum IN_MASK_ADD = 0x20000000; /* Add to the mask of an already enum IN_ISDIR = 0x40000000; /* Event occurred against dir. */ enum IN_ONESHOT = 0x80000000; /* Only send event once. */ +enum IN_ALL_EVENTS = (IN_ACCESS | IN_MODIFY | IN_ATTRIB | IN_CLOSE_WRITE | IN_CLOSE_NOWRITE | IN_OPEN | IN_MOVED_FROM | IN_MOVE_SELF | IN_MOVED_TO | IN_DELETE | IN_CREATE | IN_DELETE_SELF); /* Create and initialize inotify-kqueue instance. */ extern (C) int inotify_init (); |