From: John Baldwin Date: Thu, 21 Jan 2016 17:51:35 +0000 (-0800) Subject: Reword the string description of native FreeBSD ptids. X-Git-Tag: gdb-7.11-release~176 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b2bae2f79b11a87af3dbc2a6ca3c0c4987ecfbba;p=external%2Fbinutils.git Reword the string description of native FreeBSD ptids. The prior format led to confusing messages when threads were created or added such as "[New process 14757, LWP 100537]". The new format reports this as "[New LWP 100434 of process 15652]". gdb/ChangeLog: * fbsd-nat.c (fbsd_pid_to_str): Adjust string format. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6da544e..057c14f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2016-01-22 John Baldwin + + * fbsd-nat.c (fbsd_pid_to_str): Adjust string format. + 2016-01-22 Yao Qi * arm-linux-nat.c (fetch_fpregs): Call perror_with_name diff --git a/gdb/fbsd-nat.c b/gdb/fbsd-nat.c index e7ca0e6..bdf078e 100644 --- a/gdb/fbsd-nat.c +++ b/gdb/fbsd-nat.c @@ -303,7 +303,7 @@ fbsd_pid_to_str (struct target_ops *ops, ptid_t ptid) static char buf[64]; int pid = ptid_get_pid (ptid); - xsnprintf (buf, sizeof buf, "process %d, LWP %d", pid, lwp); + xsnprintf (buf, sizeof buf, "LWP %d of process %d", lwp, pid); return buf; }