mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-13 02:45:02 +08:00
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:
@ -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. */
|
||||
|
Reference in New Issue
Block a user