HomeSort by: relevance | last modified time | path
    Searched refs:f_touch (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/sys/
event.h 216 * Hint values for the optional f_touch event filter. If f_touch is not set
217 * to NULL and f_isfd is zero the f_touch filter will be called with the type
236 int (*f_touch) (struct knote *, struct kevent *, long); member in struct:filterops
  /src/sys/kern/
kern_event.c 253 .f_touch = filt_timertouch,
261 .f_touch = filt_usertouch,
346 * f_touch: fdp->fd_lock -> kn_kq->kq_lock (spin lock)
350 * provide f_touch to known-safe cases.
625 * XXX have to assume that f_touch will always be safe to call,
631 KASSERT(kn->kn_fop->f_touch != NULL);
633 return kn->kn_fop->f_touch(kn, kev, type);
1984 * XXX Allow only known-safe users of f_touch.
1987 if (kn->kn_fop->f_touch != NULL &&
2110 kn->kn_fop->f_touch != NULL)
    [all...]
  /src/sys/compat/linux/common/
linux_inotify.c 162 .f_touch = NULL,
171 .f_touch = NULL,
578 * manually because we cannot create a custom f_touch

Completed in 19 milliseconds