diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2018-07-06 12:51:26 -0300 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-07-09 00:52:04 +0200 |
commit | 8f0ea816435c0f6b7bcf8bd0f46f705ccca0316a (patch) | |
tree | af501e100223894d13d420007d9f8f5b7caf95b5 /linux-user/nios2 | |
parent | 122f9c83f2ef1cd90152ea8116fe6e80c8e85994 (diff) |
linux-user: Do not report "syscall not implemented" by default
This can still be reported using the "-d unimp" command line option.
Code change produced with:
git ls-files linux-user | \
xargs sed -i -E 's/fprintf\(stderr,\s?(".*not implemented\\n")\);/qemu_log_mask(LOG_UNIMP, \1);/g'
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20180706155127.7483-3-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/nios2')
-rw-r--r-- | linux-user/nios2/signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/nios2/signal.c b/linux-user/nios2/signal.c index 4985dc2212..7d535065ed 100644 --- a/linux-user/nios2/signal.c +++ b/linux-user/nios2/signal.c @@ -203,7 +203,7 @@ give_sigsegv: long do_sigreturn(CPUNios2State *env) { trace_user_do_sigreturn(env, 0); - fprintf(stderr, "do_sigreturn: not implemented\n"); + qemu_log_mask(LOG_UNIMP, "do_sigreturn: not implemented\n"); return -TARGET_ENOSYS; } |