From: Pedro Alves Date: Wed, 12 Mar 2008 22:22:06 +0000 (+0000) Subject: * thread.c (add_thread): Use printf_unfiltered to print. X-Git-Tag: gdb_6_8-2008-03-27-release~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0e237a531454902d4267b7b7e3c391db60b0f389;p=thirdparty%2Fbinutils-gdb.git * thread.c (add_thread): Use printf_unfiltered to print. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index be0e95465e4..54df78bd0ae 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2008-03-12 Pedro Alves + + * thread.c (add_thread): Use printf_unfiltered to print. + 2008-02-12 Joel Brobecker * sol-thread.c: Replace use of TM_I386SOL2_H by an expression diff --git a/gdb/thread.c b/gdb/thread.c index 2fdfa77065c..40b7b3dbe86 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -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; }