Home
last modified time | relevance | path

Searched refs:new_tio (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/linux-user/
H A Dsemihost.c29 struct termios old_tio, new_tio; in qemu_semihosting_console_read() local
33 new_tio = old_tio; in qemu_semihosting_console_read()
34 new_tio.c_lflag &= (~ICANON & ~ECHO); in qemu_semihosting_console_read()
35 new_tio.c_cc[VMIN] = 1; in qemu_semihosting_console_read()
36 new_tio.c_cc[VTIME] = 0; in qemu_semihosting_console_read()
37 tcsetattr(STDIN_FILENO, TCSANOW, &new_tio); in qemu_semihosting_console_read()