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

  /src/sys/sys/
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 97 static int kqueue_kqfilter(file_t *, struct knote *);
105 static void knote_detach(struct knote *, filedesc_t *fdp, bool);
106 static void knote_enqueue(struct knote *);
107 static void knote_activate(struct knote *);
108 static void knote_activate_locked(struct knote *);
109 static void knote_deactivate_locked(struct knote *);
111 static void filt_kqdetach(struct knote *);
112 static int filt_kqueue(struct knote *, long hint);
113 static int filt_procattach(struct knote *);
114 static void filt_procdetach(struct knote *);
2775 knote(struct klist *list, long hint) function
    [all...]

Completed in 22 milliseconds