summaryrefslogtreecommitdiffstats
path: root/linux-user
diff options
context:
space:
mode:
authorRichard Henderson2022-05-02 02:57:22 +0200
committerRichard Henderson2022-06-28 01:10:26 +0200
commit004d2abe3f2f856bd6f70fa3d8933d5f6d620142 (patch)
tree9a147380c52db3a8336d03abe090dcfe8a62c3eb /linux-user
parentsemihosting: Use console_out_gf for SYS_WRITEC (diff)
downloadqemu-004d2abe3f2f856bd6f70fa3d8933d5f6d620142.tar.gz
qemu-004d2abe3f2f856bd6f70fa3d8933d5f6d620142.tar.xz
qemu-004d2abe3f2f856bd6f70fa3d8933d5f6d620142.zip
semihosting: Remove qemu_semihosting_console_outc
This function has been replaced by *_write. Reviewed-by: Luc Michel <lmichel@kalray.eu> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'linux-user')
-rw-r--r--linux-user/semihost.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/linux-user/semihost.c b/linux-user/semihost.c
index 871edf993a..f8bc8889f3 100644
--- a/linux-user/semihost.c
+++ b/linux-user/semihost.c
@@ -33,22 +33,6 @@ int qemu_semihosting_console_outs(CPUArchState *env, target_ulong addr)
return len;
}
-void qemu_semihosting_console_outc(CPUArchState *env, target_ulong addr)
-{
- char c;
-
- if (get_user_u8(c, addr)) {
- qemu_log_mask(LOG_GUEST_ERROR,
- "%s: passed inaccessible address " TARGET_FMT_lx,
- __func__, addr);
- } else {
- if (write(STDERR_FILENO, &c, 1) != 1) {
- qemu_log_mask(LOG_UNIMP, "%s: unexpected write to stdout failure",
- __func__);
- }
- }
-}
-
/*
* For linux-user we can safely block. However as we want to return as
* soon as a character is read we need to tweak the termio to disable