• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

修訂0e237a531454902d4267b7b7e3c391db60b0f389 (tree)
時間2008-03-13 07:22:06
作者Pedro Alves <palves@redh...>
CommiterPedro Alves

Log Message

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

Change Summary

差異

--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
1+2008-03-12 Pedro Alves <pedro@codesourcery.com>
2+
3+ * thread.c (add_thread): Use printf_unfiltered to print.
4+
15 2008-02-12 Joel Brobecker <brobecker@gnat.com>
26
37 * sol-thread.c: Replace use of TM_I386SOL2_H by an expression
--- a/gdb/thread.c
+++ b/gdb/thread.c
@@ -136,7 +136,7 @@ add_thread (ptid_t ptid)
136136 struct thread_info *result = add_thread_silent (ptid);
137137
138138 if (print_thread_events)
139- printf_filtered (_("[New %s]\n"), target_pid_to_str (ptid));
139+ printf_unfiltered (_("[New %s]\n"), target_pid_to_str (ptid));
140140
141141 return result;
142142 }