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 250 .f_touch = filt_timertouch,
258 .f_touch = filt_usertouch,
343 * f_touch: fdp->fd_lock -> kn_kq->kq_lock (spin lock)
347 * provide f_touch to known-safe cases.
622 * XXX have to assume that f_touch will always be safe to call,
628 KASSERT(kn->kn_fop->f_touch != NULL);
630 return kn->kn_fop->f_touch(kn, kev, type);
1981 * XXX Allow only known-safe users of f_touch.
1984 if (kn->kn_fop->f_touch != NULL &&
2107 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 14 milliseconds