| 704 | */ |
| 705 | |
| 706 | static void |
| 707 | tty_kqops_read_detach(struct knote *kn) |
| 708 | { |
| 709 | struct tty *tp = kn->kn_hook; |
| 710 | |
| 711 | knlist_remove(&tp->t_inpoll.si_note, kn, 0); |
| 712 | } |
| 713 | |
| 714 | static int |
| 715 | tty_kqops_read_event(struct knote *kn, long hint __unused) |
nothing calls this directly
no test coverage detected