mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 15:15:46 +00:00
semihosting: Remove qemu_semihosting_log_out
The function is no longer used. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220628111701.677216-7-richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
This commit is contained in:
committed by
Philippe Mathieu-Daudé
parent
412411b352
commit
938fcd741a
@ -38,15 +38,6 @@ typedef struct SemihostingConsole {
|
||||
|
||||
static SemihostingConsole console;
|
||||
|
||||
int qemu_semihosting_log_out(const char *s, int len)
|
||||
{
|
||||
if (console.chr) {
|
||||
return qemu_chr_write_all(console.chr, (uint8_t *) s, len);
|
||||
} else {
|
||||
return write(STDERR_FILENO, s, len);
|
||||
}
|
||||
}
|
||||
|
||||
#define FIFO_SIZE 1024
|
||||
|
||||
static int console_can_read(void *opaque)
|
||||
|
Reference in New Issue
Block a user