| 728 | } |
| 729 | |
| 730 | static void |
| 731 | tty_kqops_write_detach(struct knote *kn) |
| 732 | { |
| 733 | struct tty *tp = kn->kn_hook; |
| 734 | |
| 735 | knlist_remove(&tp->t_outpoll.si_note, kn, 0); |
| 736 | } |
| 737 | |
| 738 | static int |
| 739 | tty_kqops_write_event(struct knote *kn, long hint __unused) |
nothing calls this directly
no test coverage detected