* gnu-nat.c (proc_string): Use capital T for "Thread".
This commit is contained in:
parent
a18470d110
commit
114374a0bc
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
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>
|
2008-12-19 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||||
|
|
||||||
* win32-nat.c (win32_pid_to_str): Use capital T for "Thread".
|
* win32-nat.c (win32_pid_to_str): Use capital T for "Thread".
|
||||||
|
|
|
@ -2556,7 +2556,7 @@ proc_string (struct proc *proc)
|
||||||
if (proc_is_task (proc))
|
if (proc_is_task (proc))
|
||||||
sprintf (tid_str, "process %d", proc->inf->pid);
|
sprintf (tid_str, "process %d", proc->inf->pid);
|
||||||
else
|
else
|
||||||
sprintf (tid_str, "thread %d.%d",
|
sprintf (tid_str, "Thread %d.%d",
|
||||||
proc->inf->pid, pid_to_thread_id (MERGEPID (proc->tid, 0)));
|
proc->inf->pid, pid_to_thread_id (MERGEPID (proc->tid, 0)));
|
||||||
return tid_str;
|
return tid_str;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue