mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-05 21:50:21 +08:00
Remove some ui_file_* functions
This removes ui_file_isatty, ui_file_read, ui_file_write, ui_file_write_async_safe, ui_file_flush, and ui_file_puts, replacing them with calls to the appropriate method instead. gdb/ChangeLog 2020-02-11 Tom Tromey <tromey@adacore.com> * remote.c (remote_console_output): Update. * printcmd.c (printf_command): Update. * event-loop.c (gdb_wait_for_event): Update. * linux-nat.c (sigchld_handler): Update. * remote-sim.c (gdb_os_write_stdout): Update. (gdb_os_flush_stdout): Update. (gdb_os_flush_stderr): Update. (gdb_os_write_stderr): Update. * exceptions.c (print_exception): Update. * remote-fileio.c (remote_fileio_func_read): Update. (remote_fileio_func_write): Update. * tui/tui.c (tui_enable): Update. * tui/tui-interp.c (tui_interp::init): Update. * utils.c (init_page_info): Update. (putchar_unfiltered, fputc_unfiltered): Update. (gdb_flush): Update. (emit_style_escape): Update. (flush_wrap_buffer, fputs_maybe_filtered): Update. * ui-file.c (ui_file_isatty, ui_file_read, ui_file_write) (ui_file_write_async_safe, ui_file_flush, ui_file_puts): Remove. (stderr_file::write): Update. (stderr_file::puts): Update. * ui-file.h (ui_file_isatty, ui_file_write) (ui_file_write_async_safe, ui_file_read, ui_file_flush) (ui_file_puts): Don't declare. Change-Id: I3ca9b36e9107f6adbc41e014f5078b41d6bcec4d
This commit is contained in:
@ -351,7 +351,7 @@ end_callbacks (void)
|
||||
static int
|
||||
gdb_os_write_stdout (host_callback *p, const char *buf, int len)
|
||||
{
|
||||
ui_file_write (gdb_stdtarg, buf, len);
|
||||
gdb_stdtarg->write (buf, len);
|
||||
return len;
|
||||
}
|
||||
|
||||
@ -360,7 +360,7 @@ gdb_os_write_stdout (host_callback *p, const char *buf, int len)
|
||||
static void
|
||||
gdb_os_flush_stdout (host_callback *p)
|
||||
{
|
||||
ui_file_flush (gdb_stdtarg);
|
||||
gdb_stdtarg->flush ();
|
||||
}
|
||||
|
||||
/* GDB version of os_write_stderr callback. */
|
||||
@ -375,7 +375,7 @@ gdb_os_write_stderr (host_callback *p, const char *buf, int len)
|
||||
{
|
||||
b[0] = buf[i];
|
||||
b[1] = 0;
|
||||
ui_file_puts (gdb_stdtargerr, b);
|
||||
gdb_stdtargerr->puts (b);
|
||||
}
|
||||
return len;
|
||||
}
|
||||
@ -385,7 +385,7 @@ gdb_os_write_stderr (host_callback *p, const char *buf, int len)
|
||||
static void
|
||||
gdb_os_flush_stderr (host_callback *p)
|
||||
{
|
||||
ui_file_flush (gdb_stdtargerr);
|
||||
gdb_stdtargerr->flush ();
|
||||
}
|
||||
|
||||
/* GDB version of printf_filtered callback. */
|
||||
|
Reference in New Issue
Block a user