mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00
semihosting: Pass CPUState to qemu_semihosting_console_inc
We don't need CPUArchState, and we do want the CPUState of the thread performing the operation -- use this instead of current_cpu. Reviewed-by: Luc Michel <lmichel@kalray.eu> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
675f702fd7
commit
3367d452b0
4 changed files with 10 additions and 10 deletions
|
@ -56,7 +56,7 @@ void qemu_semihosting_console_outc(CPUArchState *env, target_ulong addr)
|
|||
* program is expecting more normal behaviour. This is slow but
|
||||
* nothing using semihosting console reading is expecting to be fast.
|
||||
*/
|
||||
target_ulong qemu_semihosting_console_inc(CPUArchState *env)
|
||||
target_ulong qemu_semihosting_console_inc(CPUState *cs)
|
||||
{
|
||||
uint8_t c;
|
||||
struct termios old_tio, new_tio;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue