gdbstub.c: update old error report statements

Some updates from fprintf(stderr, ...) to error_report.

Signed-off-by: Ziyue Yang <skiver.cloud.yzy@gmail.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
Ziyue Yang 2017-01-18 16:03:29 +08:00 committed by Michael Tokarev
parent 508b4ecc39
commit 7ae6c57115
1 changed files with 5 additions and 5 deletions

View File

@ -638,8 +638,8 @@ void gdb_register_coprocessor(CPUState *cpu,
*p = s; *p = s;
if (g_pos) { if (g_pos) {
if (g_pos != s->base_reg) { if (g_pos != s->base_reg) {
fprintf(stderr, "Error: Bad gdb register numbering for '%s'\n" error_report("Error: Bad gdb register numbering for '%s', "
"Expected %d got %d\n", xml, g_pos, s->base_reg); "expected %d got %d", xml, g_pos, s->base_reg);
} else { } else {
cpu->gdb_num_g_regs = cpu->gdb_num_regs; cpu->gdb_num_g_regs = cpu->gdb_num_regs;
} }
@ -891,7 +891,7 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf)
} }
case 'k': case 'k':
/* Kill the target */ /* Kill the target */
fprintf(stderr, "\nQEMU: Terminated via GDBstub\n"); error_report("QEMU: Terminated via GDBstub");
exit(0); exit(0);
case 'D': case 'D':
/* Detach packet */ /* Detach packet */
@ -1359,7 +1359,7 @@ void gdb_do_syscallv(gdb_syscall_complete_cb cb, const char *fmt, va_list va)
break; break;
default: default:
bad_format: bad_format:
fprintf(stderr, "gdbstub: Bad syscall format string '%s'\n", error_report("gdbstub: Bad syscall format string '%s'",
fmt - 1); fmt - 1);
break; break;
} }