| 323 | } |
| 324 | |
| 325 | rt_inline void ttydevsw_inwakeup(struct lwp_tty *tp) |
| 326 | { |
| 327 | tty_assert_locked(tp); |
| 328 | MPASS(!tty_gone(tp)); |
| 329 | |
| 330 | /* Prevent spurious wakeups. */ |
| 331 | if (tp->t_flags & TF_HIWAT_IN) |
| 332 | return; |
| 333 | |
| 334 | tp->t_devsw->tsw_inwakeup(tp); |
| 335 | } |
| 336 | |
| 337 | rt_inline int ttydevsw_ioctl(struct lwp_tty *tp, rt_ubase_t cmd, rt_caddr_t data, |
| 338 | struct rt_thread *td) |
no outgoing calls
no test coverage detected