OSDN Git Service

* thread.c (add_thread): Use printf_unfiltered to print.
authorPedro Alves <pedro@codesourcery.com>
Wed, 12 Mar 2008 22:10:55 +0000 (22:10 +0000)
committerPedro Alves <pedro@codesourcery.com>
Wed, 12 Mar 2008 22:10:55 +0000 (22:10 +0000)
gdb/ChangeLog
gdb/thread.c

index cebe49d..98787bd 100644 (file)
@@ -1,3 +1,7 @@
+2008-03-12  Pedro Alves  <pedro@codesourcery.com>
+
+       * thread.c (add_thread): Use printf_unfiltered to print.
+
 2008-02-12  Joel Brobecker  <brobecker@gnat.com>
 
        * sol-thread.c: Replace use of TM_I386SOL2_H by an expression
index 2fdfa77..40b7b3d 100644 (file)
@@ -136,7 +136,7 @@ add_thread (ptid_t ptid)
   struct thread_info *result = add_thread_silent (ptid);
 
   if (print_thread_events)
-    printf_filtered (_("[New %s]\n"), target_pid_to_str (ptid));
+    printf_unfiltered (_("[New %s]\n"), target_pid_to_str (ptid));
   
   return result;
 }