libbb: consolidate the code to set termios unbuffered mode
function old new delta set_termios_to_raw - 116 +116 count_lines 72 74 +2 powertop_main 1458 1430 -28 top_main 943 914 -29 more_main 759 714 -45 fsck_minix_main 2969 2921 -48 conspy_main 1197 1135 -62 rawmode 99 36 -63 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 1/6 up/down: 118/-275) Total: -157 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@ -263,6 +263,7 @@ int rx_main(int argc UNUSED_PARAM, char **argv)
|
||||
|
||||
termios_err = tcgetattr(read_fd, &tty);
|
||||
if (termios_err == 0) {
|
||||
//TODO: use set_termios_to_raw()
|
||||
orig_tty = tty;
|
||||
cfmakeraw(&tty);
|
||||
tcsetattr(read_fd, TCSAFLUSH, &tty);
|
||||
|
Reference in New Issue
Block a user