| 1398 | } |
| 1399 | |
| 1400 | int tty_checkoutq(struct lwp_tty *tp) |
| 1401 | { |
| 1402 | /* 256 bytes should be enough to print a log message. */ |
| 1403 | return (ttyoutq_bytesleft(&tp->t_outq) >= 256); |
| 1404 | } |
| 1405 | |
| 1406 | void tty_hiwat_in_block(struct lwp_tty *tp) |
| 1407 | { |
nothing calls this directly
no test coverage detected