diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-01-11 16:17:59 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-01-11 16:17:59 +0100 |
commit | 01ccdd1d3c5221789f1ac62ced12b7984d910705 (patch) | |
tree | a6eb44f24c1324ddf18bfcec57fd4c3735aa1245 /miscutils/chat.c | |
parent | 8944c67b1f61ca6a51a485772d5d1e6a8ff3d83d (diff) | |
download | busybox-w32-01ccdd1d3c5221789f1ac62ced12b7984d910705.tar.gz busybox-w32-01ccdd1d3c5221789f1ac62ced12b7984d910705.tar.bz2 busybox-w32-01ccdd1d3c5221789f1ac62ced12b7984d910705.zip |
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>
Diffstat (limited to 'miscutils/chat.c')
-rw-r--r-- | miscutils/chat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miscutils/chat.c b/miscutils/chat.c index dc85f82fb..8df194534 100644 --- a/miscutils/chat.c +++ b/miscutils/chat.c | |||
@@ -213,6 +213,7 @@ int chat_main(int argc UNUSED_PARAM, char **argv) | |||
213 | , signal_handler); | 213 | , signal_handler); |
214 | 214 | ||
215 | #if ENABLE_FEATURE_CHAT_TTY_HIFI | 215 | #if ENABLE_FEATURE_CHAT_TTY_HIFI |
216 | //TODO: use set_termios_to_raw() | ||
216 | tcgetattr(STDIN_FILENO, &tio); | 217 | tcgetattr(STDIN_FILENO, &tio); |
217 | tio0 = tio; | 218 | tio0 = tio; |
218 | cfmakeraw(&tio); | 219 | cfmakeraw(&tio); |