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

  /src/sys/sys/
conf.h 51 struct knote;
100 int (*d_kqfilter)(dev_t, struct knote *);
133 typedef int dev_kqfilter_t(dev_t, struct knote *); typedef in typeref:typename:int dev_kqfilter_t (dev_t,struct *)
264 int seltrue_kqfilter(dev_t, struct knote *);
event.h 134 #define NOTE_SUBMIT 0x01000000U /* initial knote submission */
185 struct knote;
186 SLIST_HEAD(klist, knote);
207 #define KNOTE(list, hint) if (!SLIST_EMPTY(list)) knote(list, hint)
230 int (*f_attach) (struct knote *);
231 /* called when knote is ADDed */
232 void (*f_detach) (struct knote *);
233 /* called when knote is DELETEd */
234 int (*f_event) (struct knote *, long)
252 struct knote { struct
    [all...]
  /src/sys/kern/
kern_event.c 94 static int kqueue_kqfilter(file_t *, struct knote *);
102 static void knote_detach(struct knote *, filedesc_t *fdp, bool);
103 static void knote_enqueue(struct knote *);
104 static void knote_activate(struct knote *);
105 static void knote_activate_locked(struct knote *);
106 static void knote_deactivate_locked(struct knote *);
108 static void filt_kqdetach(struct knote *);
109 static int filt_kqueue(struct knote *, long hint);
110 static int filt_procattach(struct knote *);
111 static void filt_procdetach(struct knote *);
2770 knote(struct klist *list, long hint) function in typeref:typename:void
    [all...]

Completed in 13 milliseconds