diff options
author | Richard Henderson | 2022-05-02 02:57:22 +0200 |
---|---|---|
committer | Richard Henderson | 2022-06-28 01:10:26 +0200 |
commit | 004d2abe3f2f856bd6f70fa3d8933d5f6d620142 (patch) | |
tree | 9a147380c52db3a8336d03abe090dcfe8a62c3eb /include/semihosting/console.h | |
parent | semihosting: Use console_out_gf for SYS_WRITEC (diff) | |
download | qemu-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 '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 6994f23c82..d6c1cc58ab 100644 --- a/include/semihosting/console.h +++ b/include/semihosting/console.h @@ -25,19 +25,6 @@ int qemu_semihosting_console_outs(CPUArchState *env, target_ulong s); /** - * qemu_semihosting_console_outc: - * @env: CPUArchState - * @s: host address of null terminated guest string - * - * Send single character from guest memory to the debug console. This - * may be the remote gdb session if a softmmu guest is currently being - * debugged. - * - * Returns: nothing - */ -void qemu_semihosting_console_outc(CPUArchState *env, target_ulong c); - -/** * qemu_semihosting_console_read: * @cs: CPUState * @buf: host buffer |