| 1133 | } |
| 1134 | |
| 1135 | void |
| 1136 | ttydisc_rint_done(struct tty *tp) |
| 1137 | { |
| 1138 | |
| 1139 | tty_assert_locked(tp); |
| 1140 | |
| 1141 | if (ttyhook_hashook(tp, rint_done)) |
| 1142 | ttyhook_rint_done(tp); |
| 1143 | |
| 1144 | /* Wake up readers. */ |
| 1145 | tty_wakeup(tp, FREAD); |
| 1146 | /* Wake up driver for echo. */ |
| 1147 | ttydevsw_outwakeup(tp); |
| 1148 | } |
| 1149 | |
| 1150 | size_t |
| 1151 | ttydisc_rint_poll(struct tty *tp) |
no test coverage detected