diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-06-28 16:46:59 +0530 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2022-07-12 22:32:12 +0200 |
commit | 938fcd741ad656b2c4aeb1654bfc4ff221c26bbf (patch) | |
tree | 000c9d3d3e77e9f2d5219e4861b34b34b6dd9637 /include/semihosting/console.h | |
parent | 412411b352d4b9226e5a506fdb6cadd17b83ba4a (diff) |
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>
Diffstat (limited to 'include/semihosting/console.h')
-rw-r--r-- | include/semihosting/console.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/semihosting/console.h b/include/semihosting/console.h index 61b0cb3a94..bd78e5f03f 100644 --- a/include/semihosting/console.h +++ b/include/semihosting/console.h @@ -40,19 +40,6 @@ int qemu_semihosting_console_read(CPUState *cs, void *buf, int len); */ int qemu_semihosting_console_write(void *buf, int len); -/** - * qemu_semihosting_log_out: - * @s: pointer to string - * @len: length of string - * - * Send a string to the debug output. Unlike console_out these strings - * can't be sent to a remote gdb instance as they don't exist in guest - * memory. - * - * Returns: number of bytes written - */ -int qemu_semihosting_log_out(const char *s, int len); - /* * qemu_semihosting_console_block_until_ready: * @cs: CPUState |