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

  /src/sys/sys/
selinfo.h 67 #include <sys/event.h> /* for struct klist */
75 struct klist sel_klist; /* knotes attached to this selinfo */
event.h 186 SLIST_HEAD(klist, knote);
305 void knote(struct klist *, long);
337 void klist_init(struct klist *);
338 void klist_fini(struct klist *);
339 void klist_insert(struct klist *, struct knote *);
340 bool klist_remove(struct klist *, struct knote *);
filedesc.h 153 struct klist *fd_knhash; /* hash of attached non-fd knotes */
vnode.h 203 struct klist vk_klist; /* i notes attached to vnode */
proc.h 306 struct klist p_klist; /* p: knotes attached to proc */
  /src/usr.bin/klist/
Makefile 14 PROG= klist
16 SRCS= klist.c
  /src/sys/arch/arm/xscale/
pxa2x0_apm.h 32 struct klist sc_note;
  /src/sys/kern/
kern_event.c 100 static void kqueue_doclose(struct kqueue *, struct klist *, int);
350 * be attached to the klist, and must **not** hold the backing
352 * of each knote on the klist.
541 * destroy a klist, e.g. device detach, freeing a vnode, etc., to avoid
545 * (or anything else) is tearing down its klist, klist_fini() enumerates
995 * Because we share the same klist with signal knotes, just
1124 * new proc's klist at all.
1151 * We do the "insert into FD table" and "attach to klist" steps
1171 struct klist *list = &fdp->fd_knhash[KN_HASH(kntrack->kn_id,
1895 struct klist *list
    [all...]
vfs_syscalls.c 173 static struct klist fs_klist;
  /src/sys/arch/mips/ralink/
ralink_gpio.c 495 static struct klist knotes;
  /src/sys/dev/pci/
xmm7360.c 197 #define klist_insert(klist, kn) \
198 SLIST_INSERT_HEAD(klist, kn, kn_selnext)
199 #define klist_remove(klist, kn) \
200 SLIST_REMOVE(klist, kn, knote, kn_selnext)

Completed in 21 milliseconds