| 1613 | } |
| 1614 | |
| 1615 | void |
| 1616 | tty_set_winsize(struct tty *tp, const struct winsize *wsz) |
| 1617 | { |
| 1618 | |
| 1619 | if (memcmp(&tp->t_winsize, wsz, sizeof(*wsz)) == 0) |
| 1620 | return; |
| 1621 | tp->t_winsize = *wsz; |
| 1622 | tty_signal_pgrp(tp, SIGWINCH); |
| 1623 | } |
| 1624 | |
| 1625 | static int |
| 1626 | tty_generic_ioctl(struct tty *tp, u_long cmd, void *data, int fflag, |
no test coverage detected