qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] ARM/system mode/stdin


From: Christophe LYON
Subject: Re: [Qemu-devel] ARM/system mode/stdin
Date: Wed, 16 Jun 2010 16:49:34 +0200
User-agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.9.1.7) Gecko/20100111 Lightning/1.0b1 Thunderbird/3.0.1

Hi all,

After more investigation, I am wondering whether there is a conflict between 2 entities reading for stdin:
- one is initialized by qemu_chr_open_stdio() (in qemu-char.c)
- the 2nd one is the handling of SYS_READ in arm-semi.c

After some debug/tracing, I have noticed that a few chars a swallowed from stdin by calls to stdio_read() because the stdin FD is monitored by the select() call in main_loop_wait().

This seems to be in conflict with the ARM semihosting support for SYS_READ which also tries to read FD 0.

If I remove the call to
     qemu_set_fd_handler2(0, stdio_read_poll, stdio_read, NULL, chr);
in qemu_chr_open_stdio() then my sample test works, but I wonder what I might have broken?

Thanks and best regards,

Christophe.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]