diff options
Diffstat (limited to 'procps')
-rw-r--r-- | procps/top.c | 4 | ||||
-rw-r--r-- | procps/watch.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/procps/top.c b/procps/top.c index 252f6f74b..79915697c 100644 --- a/procps/top.c +++ b/procps/top.c @@ -632,7 +632,7 @@ static NOINLINE void display_process_list(int lines_rem, int scr_width) } /* printf(" %d", hist_iterations); */ bb_putchar(OPT_BATCH_MODE ? '\n' : '\r'); - fflush(stdout); + fflush_all(); } #undef UPSCALE #undef SHOW_STAT @@ -856,7 +856,7 @@ static NOINLINE void display_topmem_process_list(int lines_rem, int scr_width) s++; } bb_putchar(OPT_BATCH_MODE ? '\n' : '\r'); - fflush(stdout); + fflush_all(); #undef HDR_STR #undef MIN_WIDTH } diff --git a/procps/watch.c b/procps/watch.c index 5fd051072..f446ec918 100644 --- a/procps/watch.c +++ b/procps/watch.c @@ -64,7 +64,7 @@ int watch_main(int argc UNUSED_PARAM, char **argv) puts(header); } - fflush(stdout); + fflush_all(); // TODO: 'real' watch pipes cmd's output to itself // and does not allow it to overflow the screen // (taking into account linewrap!) |