Use phex debug_reg_change_callback

This patch is to use phex in debug_reg_change_callback to make it
identical in GDB and GDBserver.

gdb/gdbserver:

2015-08-25  Yao Qi  <yao.qi@linaro.org>

	* linux-aarch64-low.c (debug_reg_change_callback): Use phex.
This commit is contained in:
Yao Qi 2015-08-25 11:38:28 +01:00
parent 5e137137b2
commit 0d51c8d71c
2 changed files with 12 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2015-08-25 Yao Qi <yao.qi@linaro.org>
* linux-aarch64-low.c (debug_reg_change_callback): Use phex.
2015-08-25 Yao Qi <yao.qi@linaro.org>
* linux-aarch64-low.c (debug_reg_change_callback): Remove comments.

View File

@ -262,10 +262,10 @@ debug_reg_change_callback (struct lwp_info *lwp, void *ptr)
if (show_debug_regs)
{
fprintf (stderr, "debug_reg_change_callback: \n\tOn entry:\n");
fprintf (stderr, "\tpid%d, dr_changed_bp=0x%llx, "
"dr_changed_wp=0x%llx\n",
pid, info->dr_changed_bp,
info->dr_changed_wp);
fprintf (stderr, "\tpid%d, dr_changed_bp=0x%s, "
"dr_changed_wp=0x%s\n",
pid, phex (info->dr_changed_bp, 8),
phex (info->dr_changed_wp, 8));
}
dr_changed_ptr = is_watchpoint ? &info->dr_changed_wp
@ -288,10 +288,10 @@ debug_reg_change_callback (struct lwp_info *lwp, void *ptr)
if (show_debug_regs)
{
fprintf (stderr, "\tOn exit:\n\tpid%d, dr_changed_bp=0x%llx, "
"dr_changed_wp=0x%llx\n",
pid, info->dr_changed_bp,
info->dr_changed_wp);
fprintf (stderr, "\tOn exit:\n\tpid%d, dr_changed_bp=0x%s, "
"dr_changed_wp=0x%s\n",
pid, phex (info->dr_changed_bp, 8),
phex (info->dr_changed_wp, 8));
}
return 0;