Searched refs:kl_list (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/sys/ |
H A D | event.h | 227 struct klist kl_list; member 247 #define KNLIST_EMPTY(list) SLIST_EMPTY(&(list)->kl_list)
|
/freebsd/sys/kern/ |
H A D | kern_event.c | 537 if (SLIST_EMPTY(&list->kl_list)) in knote_fork() 541 SLIST_FOREACH(kn, &list->kl_list, kn_selnext) { in knote_fork() 2392 SLIST_FOREACH_SAFE(kn, &list->kl_list, kn_selnext, tkn) { in knote() 2438 SLIST_INSERT_HEAD(&knl->kl_list, kn, kn_selnext); in knlist_add() 2460 SLIST_REMOVE(&knl->kl_list, kn, knote, kn_selnext); in knlist_remove_kq() 2486 return (SLIST_EMPTY(&knl->kl_list)); in knlist_empty() 2544 SLIST_INIT(&knl->kl_list); in knlist_init() 2603 SLIST_FOREACH_SAFE(kn, &knl->kl_list, kn_selnext, kn2) { in knlist_cleardel() 2623 if (!SLIST_EMPTY(&knl->kl_list)) { in knlist_cleardel() 2625 kn = SLIST_FIRST(&knl->kl_list); in knlist_cleardel()
|