diff options
author | Pierre Muller <muller@ics.u-strasbg.fr> | 2008-06-20 06:51:34 +0000 |
---|---|---|
committer | Pierre Muller <muller@ics.u-strasbg.fr> | 2008-06-20 06:51:34 +0000 |
commit | 257de2475e43f6374bd42d7e1fc634ce3a9a703b (patch) | |
tree | e55f5073bc796fccf1ce8760a9eeded1ed95a5b9 /gdb | |
parent | 7160af5c1c28fdddcffb5f0ae138c5cd4631507c (diff) | |
download | gdb-257de2475e43f6374bd42d7e1fc634ce3a9a703b.tar.gz |
* gnu-nat.c (proc_string): Use capital T for "Thread".
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/gnu-nat.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a141b7852c8..8dae7cc91e5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2008-12-19 Pierre Muller <muller@ics.u-strasbg.fr> + * gnu-nat.c (proc_string): Use capital T for "Thread". + +2008-12-19 Pierre Muller <muller@ics.u-strasbg.fr> + * win32-nat.c (win32_pid_to_str): Use capital T for "Thread". 2008-06-18 Joel Brobecker <brobecker@adacore.com> diff --git a/gdb/gnu-nat.c b/gdb/gnu-nat.c index 970f663c119..5f9a405dd37 100644 --- a/gdb/gnu-nat.c +++ b/gdb/gnu-nat.c @@ -2556,7 +2556,7 @@ proc_string (struct proc *proc) if (proc_is_task (proc)) sprintf (tid_str, "process %d", proc->inf->pid); else - sprintf (tid_str, "thread %d.%d", + sprintf (tid_str, "Thread %d.%d", proc->inf->pid, pid_to_thread_id (MERGEPID (proc->tid, 0))); return tid_str; } |