Switch gdb_stdlog to use timestamped_file
authorTom Tromey <tom@tromey.com>
Fri, 31 Dec 2021 19:00:11 +0000 (12:00 -0700)
committerTom Tromey <tom@tromey.com>
Mon, 28 Mar 2022 20:13:28 +0000 (14:13 -0600)
commit52a4a5885af15e7ef32d5f4e5b77f98349c32276
tree1ca6af096a9c652bbe8aa4f7347eb178e39ed1f1
parent3c6c449e304413f513db5635abd2181776f7db92
Switch gdb_stdlog to use timestamped_file

Currently, timestamps for logging are done by looking for the use of
gdb_stdlog in vfprintf_unfiltered.  This seems potentially buggy, in
that during logging or other redirects (like execute_fn_to_ui_file) we
might have gdb_stdout==gdb_stdlog and so, conceivably, wind up with
timestamps in a log when they were not desired.

It seems better, instead, for timestamps to be a property of the
ui_file itself.

This patch changes gdb to use the new timestamped_file for gdb_stdlog
where appropriate, and removes the special case from
vfprintf_unfiltered.

Note that this may somewhat change the output in some cases -- in
particular, when going through execute_fn_to_ui_file (or the _string
variant), timestamps won't be emitted.  This could be fixed in those
functions, but it wasn't clear to me whether this is really desirable.

Note also that this changes the TUI to send gdb_stdlog to gdb_stderr.
I imagine that the previous use of gdb_stdout here was inadvertent.
(And in any case it probably doesn't matter.)
gdb/cli/cli-interp.c
gdb/event-top.c
gdb/tui/tui-io.c
gdb/utils.c