diff options
author | Ziyue Yang | 2017-01-18 09:03:29 +0100 |
---|---|---|
committer | Michael Tokarev | 2017-01-24 21:26:54 +0100 |
commit | 7ae6c571151cff785a225d6916269bbe199f0ab1 (patch) | |
tree | c3e1fd81abee6ae4409983a4e289ac06f78eadc4 | |
parent | gdbstub.c: fix GDB connection segfault caused by empty machines (diff) | |
download | qemu-7ae6c571151cff785a225d6916269bbe199f0ab1.tar.gz qemu-7ae6c571151cff785a225d6916269bbe199f0ab1.tar.xz qemu-7ae6c571151cff785a225d6916269bbe199f0ab1.zip |
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>
-rw-r--r-- | gdbstub.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -638,8 +638,8 @@ void gdb_register_coprocessor(CPUState *cpu, *p = s; if (g_pos) { if (g_pos != s->base_reg) { - fprintf(stderr, "Error: Bad gdb register numbering for '%s'\n" - "Expected %d got %d\n", xml, g_pos, s->base_reg); + error_report("Error: Bad gdb register numbering for '%s', " + "expected %d got %d", xml, g_pos, s->base_reg); } else { 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': /* Kill the target */ - fprintf(stderr, "\nQEMU: Terminated via GDBstub\n"); + error_report("QEMU: Terminated via GDBstub"); exit(0); case 'D': /* Detach packet */ @@ -1359,8 +1359,8 @@ void gdb_do_syscallv(gdb_syscall_complete_cb cb, const char *fmt, va_list va) break; default: bad_format: - fprintf(stderr, "gdbstub: Bad syscall format string '%s'\n", - fmt - 1); + error_report("gdbstub: Bad syscall format string '%s'", + fmt - 1); break; } } else { |