Use debug_printf in debug_reg_change_callback

gdb:

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

	* aarch64-linux-nat.c (debug_reg_change_callback): Use
	debug_printf.

gdb/gdbserver:

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

	* linux-aarch64-low.c (debug_reg_change_callback): Use
	debug_printf.
This commit is contained in:
Yao Qi
2015-08-25 11:38:29 +01:00
parent 0d51c8d71c
commit 32a271eeaf
4 changed files with 28 additions and 21 deletions

View File

@ -1,3 +1,8 @@
2015-08-25 Yao Qi <yao.qi@linaro.org>
* aarch64-linux-nat.c (debug_reg_change_callback): Use
debug_printf.
2015-08-25 Yao Qi <yao.qi@linaro.org>
* aarch64-linux-nat.c (debug_reg_change_callback): Call

View File

@ -177,13 +177,11 @@ debug_reg_change_callback (struct lwp_info *lwp, void *ptr)
if (show_debug_regs)
{
fprintf_unfiltered (gdb_stdlog,
"debug_reg_change_callback: \n\tOn entry:\n");
fprintf_unfiltered (gdb_stdlog,
"\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));
debug_printf ("debug_reg_change_callback: \n\tOn entry:\n");
debug_printf ("\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
@ -206,11 +204,10 @@ debug_reg_change_callback (struct lwp_info *lwp, void *ptr)
if (show_debug_regs)
{
fprintf_unfiltered (gdb_stdlog,
"\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));
debug_printf ("\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));
}
/* Continue the iteration. */

View File

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

View File

@ -261,11 +261,11 @@ 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%s, "
"dr_changed_wp=0x%s\n",
pid, phex (info->dr_changed_bp, 8),
phex (info->dr_changed_wp, 8));
debug_printf ("debug_reg_change_callback: \n\tOn entry:\n");
debug_printf ("\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%s, "
"dr_changed_wp=0x%s\n",
pid, phex (info->dr_changed_bp, 8),
phex (info->dr_changed_wp, 8));
debug_printf ("\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;