* remove knote from the specified knlist */
| 2346 | * remove knote from the specified knlist |
| 2347 | */ |
| 2348 | void |
| 2349 | knlist_remove(struct knlist *knl, struct knote *kn, int islocked) |
| 2350 | { |
| 2351 | |
| 2352 | knlist_remove_kq(knl, kn, islocked, 0); |
| 2353 | } |
| 2354 | |
| 2355 | int |
| 2356 | knlist_empty(struct knlist *knl) |
no test coverage detected