Use filtered output in files_info implementations
authorTom Tromey <tom@tromey.com>
Mon, 27 Dec 2021 01:14:39 +0000 (18:14 -0700)
committerTom Tromey <tom@tromey.com>
Wed, 5 Jan 2022 18:36:22 +0000 (11:36 -0700)
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.

gdb/go32-nat.c
gdb/nto-procfs.c
gdb/remote-sim.c
gdb/target.c
gdb/windows-nat.c

index 970e9e00c54eb97e828b4cb9573a9b84ff4d3e24..204c21210062cb4fe21966dda524b649977627ce 100644 (file)
@@ -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
index 7ae71d9d519b46f2ddb49c617deaa88787c55053..bf869df1dab2c76b3ea007044d907cce3bb17495 100644 (file)
@@ -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.  */
index 7a029c93e91f0a31b3032a4a83b0d0e682fabee5..3637fdb18bf0c7d11fea839948e3a6c19fbab0dd 100644 (file)
@@ -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);
     }
 }
index e10b295c797a3d700fdba6b12726c4d47a17cd05..b3b1bbd06b2484a9ab9ab810ea2b2e6cfdacbeb2 100644 (file)
@@ -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 ();
     }
index 76332541f8efced0ad3884782dee139a68c19099..03447e0922a7a24a907e38e8a4c937ea981df182 100644 (file)
@@ -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.