summaryrefslogtreecommitdiff
path: root/gdb/ui-file.h
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2020-02-05 12:45:13 +0100
committerTom Tromey <tromey@adacore.com>2020-02-07 14:06:03 -0700
commitdfcb27e41d37b8bff178697f5f33ec288387fb01 (patch)
tree6148568d725dc2bb4e606cb3ec2540185cf6b125 /gdb/ui-file.h
parentfaa17681ccf5b45a14424c184d867a390d9e8086 (diff)
downloadbinutils-gdb-dfcb27e41d37b8bff178697f5f33ec288387fb01.tar.gz
Make fputs_unfiltered use fputs_maybe_filtered
This patch redefines fputs_unfiltered in utils.c, with new behavior to forward parameters to fputs_maybe_filtered. This makes fputs_unfiltered identical to fputs_filtered, except filtering is disabled. Some callers of fputs_unfiltered have been updated to use ui_file_puts where they were using other ui_file_* functions anyway for IO. This fixes the problem I saw with \032\032post-prompt annotation being flushed to stdout in the wrong order. 2020-02-05 Iain Buclaw <ibuclaw@gdcproject.org> PR gdb/25190: * gdb/remote-sim.c (gdb_os_write_stderr): Update. * gdb/remote.c (remote_console_output): Update. * gdb/ui-file.c (fputs_unfiltered): Rename to... (ui_file_puts): ...this. * gdb/ui-file.h (ui_file_puts): Add declaration. * gdb/utils.c (emit_style_escape): Update. (flush_wrap_buffer): Update. (fputs_maybe_filtered): Update. (fputs_unfiltered): Add function. Change-Id: I17ed5078f71208344f2f8ab634a6518b1af6e213
Diffstat (limited to 'gdb/ui-file.h')
-rw-r--r--gdb/ui-file.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/ui-file.h b/gdb/ui-file.h
index b0bc3f23421..67685bdfa15 100644
--- a/gdb/ui-file.h
+++ b/gdb/ui-file.h
@@ -112,6 +112,8 @@ extern void ui_file_write_async_safe (struct ui_file *file, const char *buf,
extern long ui_file_read (struct ui_file *file, char *buf, long length_buf);
+extern void ui_file_puts (struct ui_file *file, const char *buf);
+
extern int gdb_console_fputs (const char *, FILE *);
/* A std::string-based ui_file. Can be used as a scratch buffer for