Always print the "host libthread-db" message to stdout
authorTom Tromey <tom@tromey.com>
Thu, 30 Dec 2021 19:13:52 +0000 (12:13 -0700)
committerTom Tromey <tom@tromey.com>
Tue, 25 Jan 2022 22:22:49 +0000 (15:22 -0700)
linux-thread-db.c has a bit of unusual code that unconditionally
prints a message, but decides whether to print to gdb_stdout or
gdb_stdlog based on a debug flag.  It seems better to me to simply
always print this; and this is the only spot in gdb where we
conditionally pass gdb_stdout to one of the f*_unfiltered functions.

gdb/linux-thread-db.c

index a0cfeb1685b8a472275cca3163ff193c15787add..18d313bf9bec11d235cc889aea57f3a67f1a3ed2 100644 (file)
@@ -940,21 +940,14 @@ try_thread_db_load_1 (struct thread_db_info *info)
 
   if (!libthread_db_search_path.empty () || libthread_db_debug)
     {
-      struct ui_file *file;
       const char *library;
 
       library = dladdr_to_soname ((const void *) *info->td_ta_new_p);
       if (library == NULL)
        library = LIBTHREAD_DB_SO;
 
-      /* If we'd print this to gdb_stdout when debug output is
-        disabled, still print it to gdb_stdout if debug output is
-        enabled.  User visible output should not depend on debug
-        settings.  */
-      file = !libthread_db_search_path.empty () ? gdb_stdout : gdb_stdlog;
-      fprintf_unfiltered (file,
-                         _("Using host libthread_db library \"%ps\".\n"),
-                         styled_string (file_name_style.style (), library));
+      printf_unfiltered (_("Using host libthread_db library \"%ps\".\n"),
+                        styled_string (file_name_style.style (), library));
     }
 
   /* The thread library was detected.  Activate the thread_db target