Browse Source

* thread.c (add_thread): Use printf_unfiltered to print.

msnyder-reverse-20080609-branch
Pedro Alves 19 years ago
parent
commit
fd532e2e9e
  1. 4
      gdb/ChangeLog
  2. 2
      gdb/thread.c

4
gdb/ChangeLog

@ -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

2
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;
}

Loading…
Cancel
Save