| 471 | } |
| 472 | |
| 473 | static void |
| 474 | pts_kqops_write_detach(struct knote *kn) |
| 475 | { |
| 476 | struct file *fp = kn->kn_fp; |
| 477 | struct tty *tp = fp->f_data; |
| 478 | struct pts_softc *psc = tty_softc(tp); |
| 479 | |
| 480 | knlist_remove(&psc->pts_inpoll.si_note, kn, 0); |
| 481 | } |
| 482 | |
| 483 | static int |
| 484 | pts_kqops_write_event(struct knote *kn, long hint) |
nothing calls this directly
no test coverage detected