Home | History | Annotate | Download | only in inotify

Lines Matching refs:fd_notify

56 static int fd, fd_notify;
114 if ((len = read(fd_notify, event_buf, EVENT_BUF_LEN)) < 0) {
117 fd_notify, EVENT_BUF_LEN);
170 if ((fd_notify = myinotify_init()) < 0) {
180 if ((wd = myinotify_add_watch(fd_notify, fname, IN_ALL_EVENTS)) < 0) {
183 fd_notify, fname);
191 if (reap_wd && myinotify_rm_watch(fd_notify, wd) < 0) {
193 fd_notify, wd);
196 if (fd_notify > 0)
197 SAFE_CLOSE(fd_notify);