Searched refs:islocked (Results 1 – 3 of 3) sorted by relevance
| /f-stack/tools/compat/include/sys/ |
| H A D | event.h | 264 extern void knlist_add(struct knlist *knl, struct knote *kn, int islocked); 265 extern void knlist_remove(struct knlist *knl, struct knote *kn, int islocked); 274 int islocked, int killkn); 275 #define knlist_clear(knl, islocked) \ argument 276 knlist_cleardel((knl), NULL, (islocked), 0) 277 #define knlist_delete(knl, td, islocked) \ argument 278 knlist_cleardel((knl), (td), (islocked), 1)
|
| /f-stack/freebsd/sys/ |
| H A D | event.h | 332 void knlist_add(struct knlist *knl, struct knote *kn, int islocked); 333 void knlist_remove(struct knlist *knl, struct knote *kn, int islocked); 341 int islocked, int killkn); 342 #define knlist_clear(knl, islocked) \ argument 343 knlist_cleardel((knl), NULL, (islocked), 0) 344 #define knlist_delete(knl, td, islocked) \ argument 345 knlist_cleardel((knl), (td), (islocked), 1)
|
| /f-stack/freebsd/kern/ |
| H A D | kern_event.c | 300 #define KNL_ASSERT_LOCK(knl, islocked) do { \ argument 301 if (islocked) \ 2296 knlist_add(struct knlist *knl, struct knote *kn, int islocked) in knlist_add() argument 2299 KNL_ASSERT_LOCK(knl, islocked); in knlist_add() 2304 if (!islocked) in knlist_add() 2307 if (!islocked) in knlist_add() 2343 knlist_remove(struct knlist *knl, struct knote *kn, int islocked) in knlist_remove() argument 2346 knlist_remove_kq(knl, kn, islocked, 0); in knlist_remove() 2489 knlist_cleardel(struct knlist *knl, struct thread *td, int islocked, int killkn) in knlist_cleardel() argument 2495 if (islocked) in knlist_cleardel() [all …]
|