Unify vprintf functions

Now that filtered and unfiltered output can be treated identically, we
can unify the vprintf family of functions: vprintf_filtered,
vprintf_unfiltered, vfprintf_filtered and vfprintf_unfiltered.  (For
the gdb_stdout variants, recall that only printf_unfiltered gets truly
unfiltered output at this point.)  This removes one such function and
renames the remaining two to "gdb_vprintf".  All callers are updated.
Much of this patch was written by script.
This commit is contained in:
Tom Tromey 2022-01-02 11:13:35 -07:00
parent f4bf8795b3
commit 19a7b8ab87
15 changed files with 30 additions and 72 deletions

View file

@ -882,7 +882,7 @@ ps_plog (const char *fmt, ...)
va_start (args, fmt);
vfprintf_filtered (gdb_stderr, fmt, args);
gdb_vprintf (gdb_stderr, fmt, args);
}
/* Get size of extra register set. Currently a noop. */