| 85 | } |
| 86 | |
| 87 | static __inline size_t |
| 88 | ttyhook_rint_bypass(struct tty *tp, const void *buf, size_t len) |
| 89 | { |
| 90 | tty_assert_locked(tp); |
| 91 | MPASS(!tty_gone(tp)); |
| 92 | |
| 93 | return tp->t_hook->th_rint_bypass(tp, buf, len); |
| 94 | } |
| 95 | |
| 96 | static __inline void |
| 97 | ttyhook_rint_done(struct tty *tp) |
no outgoing calls
no test coverage detected