summaryrefslogtreecommitdiffstats
path: root/linux-user/microblaze/cpu_loop.c
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé2018-07-06 17:51:27 +0200
committerLaurent Vivier2018-07-09 00:52:50 +0200
commit84ca4fa99d7b6c83ce31e1e41300d55cb4e97dcb (patch)
tree35b408c250d9eb916a3c615190c939f0011daece /linux-user/microblaze/cpu_loop.c
parentlinux-user: Do not report "syscall not implemented" by default (diff)
downloadqemu-84ca4fa99d7b6c83ce31e1e41300d55cb4e97dcb.tar.gz
qemu-84ca4fa99d7b6c83ce31e1e41300d55cb4e97dcb.tar.xz
qemu-84ca4fa99d7b6c83ce31e1e41300d55cb4e97dcb.zip
linux-user: Report error message on stderr, rather than stdout
Code change produced with: git ls-files linux-user | \ xargs sed -i -E 's/(\s+)printf\s*\(("Unhandled.*)\);/\1fprintf(stderr, \2);/g' Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20180706155127.7483-4-f4bug@amsat.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/microblaze/cpu_loop.c')
-rw-r--r--linux-user/microblaze/cpu_loop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/linux-user/microblaze/cpu_loop.c b/linux-user/microblaze/cpu_loop.c
index 5af12d5b21..2af93eb39a 100644
--- a/linux-user/microblaze/cpu_loop.c
+++ b/linux-user/microblaze/cpu_loop.c
@@ -105,8 +105,8 @@ void cpu_loop(CPUMBState *env)
queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info);
break;
default:
- printf("Unhandled hw-exception: 0x%" PRIx64 "\n",
- env->sregs[SR_ESR] & ESR_EC_MASK);
+ fprintf(stderr, "Unhandled hw-exception: 0x%" PRIx64 "\n",
+ env->sregs[SR_ESR] & ESR_EC_MASK);
cpu_dump_state(cs, stderr, fprintf, 0);
exit(EXIT_FAILURE);
break;
@@ -130,7 +130,7 @@ void cpu_loop(CPUMBState *env)
cpu_exec_step_atomic(cs);
break;
default:
- printf ("Unhandled trap: 0x%x\n", trapnr);
+ fprintf(stderr, "Unhandled trap: 0x%x\n", trapnr);
cpu_dump_state(cs, stderr, fprintf, 0);
exit(EXIT_FAILURE);
}