aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2021-12-26 18:14:39 -0700
committerTom Tromey <tom@tromey.com>2022-01-05 11:36:22 -0700
commita03743453101edf0badda39f25d30736d184973b (patch)
tree2680710926c816e05f41660cbabfbe6b591a2cc5 /gdb
parentec2770563a66ee861442f212b48523d71a624c0e (diff)
downloadbinutils-a03743453101edf0badda39f25d30736d184973b.zip
binutils-a03743453101edf0badda39f25d30736d184973b.tar.gz
binutils-a03743453101edf0badda39f25d30736d184973b.tar.bz2
Use filtered output in files_info implementations
This changes the implementations of the target files_info method to use filtered output. This makes sense because the sole caller of this method is an ordinary command (info_program_command). This patch changes this command to use filtered output as well.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/go32-nat.c2
-rw-r--r--gdb/nto-procfs.c8
-rw-r--r--gdb/remote-sim.c4
-rw-r--r--gdb/target.c10
-rw-r--r--gdb/windows-nat.c6
5 files changed, 15 insertions, 15 deletions
diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c
index 970e9e0..204c212 100644
--- a/gdb/go32-nat.c
+++ b/gdb/go32-nat.c
@@ -663,7 +663,7 @@ static cmdline_t child_cmd; /* Parsed child's command line kept here. */
void
go32_nat_target::files_info ()
{
- printf_unfiltered ("You are running a DJGPP V2 program.\n");
+ printf_filtered ("You are running a DJGPP V2 program.\n");
}
void
diff --git a/gdb/nto-procfs.c b/gdb/nto-procfs.c
index 7ae71d9..bf869df 100644
--- a/gdb/nto-procfs.c
+++ b/gdb/nto-procfs.c
@@ -656,10 +656,10 @@ nto_procfs_target::files_info ()
{
struct inferior *inf = current_inferior ();
- printf_unfiltered ("\tUsing the running image of %s %s via %s.\n",
- inf->attach_flag ? "attached" : "child",
- target_pid_to_str (inferior_ptid).c_str (),
- (nodestr != NULL) ? nodestr : "local node");
+ printf_filtered ("\tUsing the running image of %s %s via %s.\n",
+ inf->attach_flag ? "attached" : "child",
+ target_pid_to_str (inferior_ptid).c_str (),
+ (nodestr != NULL) ? nodestr : "local node");
}
/* Target to_pid_to_exec_file implementation. */
diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c
index 7a029c9..3637fdb 100644
--- a/gdb/remote-sim.c
+++ b/gdb/remote-sim.c
@@ -1114,8 +1114,8 @@ gdbsim_target::files_info ()
if (current_program_space->exec_bfd ())
{
- fprintf_unfiltered (gdb_stdlog, "\tAttached to %s running program %s\n",
- target_shortname (), file);
+ printf_filtered ("\tAttached to %s running program %s\n",
+ target_shortname (), file);
sim_info (sim_data->gdbsim_desc, 0);
}
}
diff --git a/gdb/target.c b/gdb/target.c
index e10b295..b3b1bbd 100644
--- a/gdb/target.c
+++ b/gdb/target.c
@@ -2444,8 +2444,8 @@ info_target_command (const char *args, int from_tty)
if (current_program_space->symfile_object_file != NULL)
{
objfile *objf = current_program_space->symfile_object_file;
- printf_unfiltered (_("Symbols from \"%s\".\n"),
- objfile_name (objf));
+ printf_filtered (_("Symbols from \"%s\".\n"),
+ objfile_name (objf));
}
for (target_ops *t = current_inferior ()->top_target ();
@@ -2458,9 +2458,9 @@ info_target_command (const char *args, int from_tty)
if ((int) (t->stratum ()) <= (int) dummy_stratum)
continue;
if (has_all_mem)
- printf_unfiltered (_("\tWhile running this, "
- "GDB does not access memory from...\n"));
- printf_unfiltered ("%s:\n", t->longname ());
+ printf_filtered (_("\tWhile running this, "
+ "GDB does not access memory from...\n"));
+ printf_filtered ("%s:\n", t->longname ());
t->files_info ();
has_all_mem = t->has_all_memory ();
}
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c
index 7633254..03447e0 100644
--- a/gdb/windows-nat.c
+++ b/gdb/windows-nat.c
@@ -2090,9 +2090,9 @@ windows_nat_target::files_info ()
{
struct inferior *inf = current_inferior ();
- printf_unfiltered ("\tUsing the running image of %s %s.\n",
- inf->attach_flag ? "attached" : "child",
- target_pid_to_str (inferior_ptid).c_str ());
+ printf_filtered ("\tUsing the running image of %s %s.\n",
+ inf->attach_flag ? "attached" : "child",
+ target_pid_to_str (inferior_ptid).c_str ());
}
/* Modify CreateProcess parameters for use of a new separate console.