diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-08-04 23:18:56 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-08-05 12:12:37 -0400 |
commit | 17e971f729625c144d07cbfcfb0a5a51d1ca0305 (patch) | |
tree | f532c414d033302ed7fa9bbf09c9632d052d4855 /gdb/infrun.c | |
parent | 70454ee70ad63c77d39768f057d722214adef658 (diff) | |
download | binutils-17e971f729625c144d07cbfcfb0a5a51d1ca0305.zip binutils-17e971f729625c144d07cbfcfb0a5a51d1ca0305.tar.gz binutils-17e971f729625c144d07cbfcfb0a5a51d1ca0305.tar.bz2 |
gdb: use ptid_t::to_string in print_target_wait_results
The ptid_t::to_string method was introduced recently, to format a ptid_t
for debug purposes. It formats the ptid exactly as is done in
print_target_wait_results, so make print_target_wait_results use it.
Change-Id: I0a81c8040d3e1858fb304cb28366b34d94eefe4d
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index 6c42c48..8870f82 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -3442,15 +3442,11 @@ void print_target_wait_results (ptid_t waiton_ptid, ptid_t result_ptid, const struct target_waitstatus *ws) { - infrun_debug_printf ("target_wait (%d.%ld.%ld [%s], status) =", - waiton_ptid.pid (), - waiton_ptid.lwp (), - waiton_ptid.tid (), + infrun_debug_printf ("target_wait (%s [%s], status) =", + waiton_ptid.to_string ().c_str (), target_pid_to_str (waiton_ptid).c_str ()); - infrun_debug_printf (" %d.%ld.%ld [%s],", - result_ptid.pid (), - result_ptid.lwp (), - result_ptid.tid (), + infrun_debug_printf (" %s [%s],", + result_ptid.to_string ().c_str (), target_pid_to_str (result_ptid).c_str ()); infrun_debug_printf (" %s", target_waitstatus_to_string (ws).c_str ()); } |