diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-11-13 13:16:27 +0100 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:28:19 -0600 |
commit | 0f36d8413fa15675db487c8259bcc04c174270f8 (patch) | |
tree | e68766705903671c2e2da477bebf6ce441606902 /target-cris/translate.c | |
parent | c6e6e31f1d0eb196f73b17957d86fd464a8b2ce5 (diff) | |
download | hqemu-0f36d8413fa15675db487c8259bcc04c174270f8.zip hqemu-0f36d8413fa15675db487c8259bcc04c174270f8.tar.gz |
qemu-log: introduce qemu_log_separate
In some cases, the same message is printed both on stderr and in the log.
Avoid duplicate output in the default case where stderr _is_ the log,
and standardize this to stderr+log where it used to use stdio+log.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-cris/translate.c')
-rw-r--r-- | target-cris/translate.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/target-cris/translate.c b/target-cris/translate.c index 2d710cc..354c86d 100644 --- a/target-cris/translate.c +++ b/target-cris/translate.c @@ -130,8 +130,10 @@ typedef struct DisasContext { static void gen_BUG(DisasContext *dc, const char *file, int line) { - printf("BUG: pc=%x %s %d\n", dc->pc, file, line); - qemu_log("BUG: pc=%x %s %d\n", dc->pc, file, line); + fprintf(stderr, "BUG: pc=%x %s %d\n", dc->pc, file, line); + if (qemu_log_separate()) { + qemu_log("BUG: pc=%x %s %d\n", dc->pc, file, line); + } cpu_abort(CPU(dc->cpu), "%s:%d\n", file, line); } |