Remove unnecessary calls to wrap_here and gdb_flush
Various spots in gdb currently know about the wrap buffer, and so are careful to call wrap_here to be certain that all output has been flushed. Now that the pager is just an ordinary stream, this isn't needed, and a simple call to gdb_flush is enough. Similarly, there are places where gdb prints to gdb_stderr, but first flushes gdb_stdout. stderr_file already flushes gdb_stdout, so these aren't needed.
This commit is contained in:
parent
6b0c115423
commit
ebfc93611b
7 changed files with 3 additions and 21 deletions
|
@ -846,7 +846,6 @@ echo_command (const char *text, int from_tty)
|
|||
gdb_stdout->reset_style ();
|
||||
|
||||
/* Force this output to appear now. */
|
||||
gdb_stdout->wrap_here (0);
|
||||
gdb_flush (gdb_stdout);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue