diff options
author | Richard Henderson | 2022-05-02 03:04:27 +0200 |
---|---|---|
committer | Richard Henderson | 2022-06-28 01:11:20 +0200 |
commit | 2d010c2719da360d44a5c44d279d49eca21c5de8 (patch) | |
tree | d0d4ad63a529c24917ada5f116fe5631ed96717b /include/semihosting | |
parent | semihosting: Use console_out_gf for SYS_WRITE0 (diff) | |
download | qemu-2d010c2719da360d44a5c44d279d49eca21c5de8.tar.gz qemu-2d010c2719da360d44a5c44d279d49eca21c5de8.tar.xz qemu-2d010c2719da360d44a5c44d279d49eca21c5de8.zip |
semihosting: Remove qemu_semihosting_console_outs
This function has been replaced by *_write.
Reviewed-by: Luc Michel <lmichel@kalray.eu>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/semihosting')
-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 d6c1cc58ab..20c31d89d4 100644 --- a/include/semihosting/console.h +++ b/include/semihosting/console.h @@ -12,19 +12,6 @@ #include "cpu.h" /** - * qemu_semihosting_console_outs: - * @env: CPUArchState - * @s: host address of null terminated guest string - * - * Send a null terminated guest string to the debug console. This may - * be the remote gdb session if a softmmu guest is currently being - * debugged. - * - * Returns: number of bytes written. - */ -int qemu_semihosting_console_outs(CPUArchState *env, target_ulong s); - -/** * qemu_semihosting_console_read: * @cs: CPUState * @buf: host buffer |