| 445 | */ |
| 446 | |
| 447 | static void |
| 448 | pts_kqops_read_detach(struct knote *kn) |
| 449 | { |
| 450 | struct file *fp = kn->kn_fp; |
| 451 | struct tty *tp = fp->f_data; |
| 452 | struct pts_softc *psc = tty_softc(tp); |
| 453 | |
| 454 | knlist_remove(&psc->pts_outpoll.si_note, kn, 0); |
| 455 | } |
| 456 | |
| 457 | static int |
| 458 | pts_kqops_read_event(struct knote *kn, long hint) |
nothing calls this directly
no test coverage detected