| 391 | } |
| 392 | |
| 393 | static void |
| 394 | filt_kqdetach(struct knote *kn) |
| 395 | { |
| 396 | struct kqueue *kq = kn->kn_fp->f_data; |
| 397 | |
| 398 | knlist_remove(&kq->kq_sel.si_note, kn, 0); |
| 399 | } |
| 400 | |
| 401 | /*ARGSUSED*/ |
| 402 | static int |
nothing calls this directly
no test coverage detected