| 1331 | } |
| 1332 | |
| 1333 | void ttydisc_rint_done(struct lwp_tty *tp) |
| 1334 | { |
| 1335 | tty_assert_locked(tp); |
| 1336 | |
| 1337 | #ifdef USING_BSD_HOOK |
| 1338 | if (ttyhook_hashook(tp, rint_done)) |
| 1339 | ttyhook_rint_done(tp); |
| 1340 | #endif |
| 1341 | |
| 1342 | /* Wake up readers. */ |
| 1343 | tty_wakeup(tp, FREAD); |
| 1344 | /* Wake up driver for echo. */ |
| 1345 | ttydevsw_outwakeup(tp); |
| 1346 | } |
| 1347 | |
| 1348 | size_t ttydisc_rint_poll(struct lwp_tty *tp) |
| 1349 | { |
no test coverage detected