projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
965b60e
)
* thread.c (add_thread): Use printf_unfiltered to print.
author
Pedro Alves
<palves@redhat.com>
Wed, 12 Mar 2008 22:10:55 +0000
(22:10 +0000)
committer
Pedro Alves
<palves@redhat.com>
Wed, 12 Mar 2008 22:10:55 +0000
(22:10 +0000)
gdb/ChangeLog
patch
|
blob
|
history
gdb/thread.c
patch
|
blob
|
history
diff --git
a/gdb/ChangeLog
b/gdb/ChangeLog
index cebe49d633e96de70c069e1efde7161cf536bf62..98787bd2bc912937f4fdf7e08cdddc1fd9f4b8f5 100644
(file)
--- a/
gdb/ChangeLog
+++ b/
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
diff --git
a/gdb/thread.c
b/gdb/thread.c
index 2fdfa77065c4aba21414a32fa035fdc9fb06db40..40b7b3dbe864d7e9a90a5703f713b7831f38d0a1 100644
(file)
--- 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_
un
filtered (_("[New %s]\n"), target_pid_to_str (ptid));
return result;
}