From c066bbe5e23b32a5b83584ec725a49e992ff6102 Mon Sep 17 00:00:00 2001 From: Jim Warner Date: Mon, 12 Sep 2022 00:00:00 -0500 Subject: [PATCH] top: fix an improper behavior following a SIGWINCH bug <=== port of newlib 9d999370 ______________________________ original newlib message ----------------------------------- ( minus git hash ) When top was made more responsive to keyboard input in that commit referenced below, his previous response to a SIGWINCH was upset. Formerly, that display integrity was restored with the next refresh cycle. But, without this patch, one must strike some key to accomplish it. [ in truth, this patch vastly improves that sigwinch ] [ response. whereas before, although integrity would ] [ be restored automatically, it did not happen until ] [ the next regular refresh. now it is instantaneous! ] Reference(s): . May, 2022 - made more responsive to kdb input commit ........................................ Signed-off-by: Jim Warner --- top/top.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/top/top.c b/top/top.c index 8ae05215..eab1735e 100644 --- a/top/top.c +++ b/top/top.c @@ -7244,7 +7244,7 @@ int main (int argc, char *argv[]) { if (0 < Loops) --Loops; if (!Loops) bye_bye(NULL); - if (Frames_signal) { Frames_signal = BREAK_off; continue; } + if (Frames_signal) { Frames_signal = BREAK_off; zap_fieldstab(); continue; } ts.tv_sec = Rc.delay_time; ts.tv_nsec = (Rc.delay_time - (int)Rc.delay_time) * 1000000000;