Re: [Qemu-devel] [PATCH 3/9] chardev: use a child source for qio input source

2019-04-05 Thread KONRAD Frederic
Hi Marc, I did more experiments.. It seems to be an issue in glib-2.44.1 which is quite old. I updated and it seems I don't see the issue anymore. Thanks for your input on this! Cheers, Fred Le 4/4/19 à 5:49 PM, KONRAD Frederic a écrit : Le 4/4/19 à 5:44 PM, Marc-André Lureau a écrit : Hi

Re: [Qemu-devel] [PATCH 3/9] chardev: use a child source for qio input source

2019-04-04 Thread KONRAD Frederic
Le 4/4/19 à 5:44 PM, Marc-André Lureau a écrit : Hi On Thu, Apr 4, 2019 at 5:18 PM KONRAD Frederic wrote: Hi guys, We have some random delays with gdbstub since this commit under Windows. Basically while debugging the next command can sometimes take more than 5 seconds while it usually to

Re: [Qemu-devel] [PATCH 3/9] chardev: use a child source for qio input source

2019-04-04 Thread Marc-André Lureau
Hi On Thu, Apr 4, 2019 at 5:18 PM KONRAD Frederic wrote: > > Hi guys, > > We have some random delays with gdbstub since this commit under Windows. > Basically while debugging the next command can sometimes take more than 5 > seconds while it usually tooks 30ms before. It is not target dependent I

Re: [Qemu-devel] [PATCH 3/9] chardev: use a child source for qio input source

2019-04-04 Thread KONRAD Frederic
Hi guys, We have some random delays with gdbstub since this commit under Windows. Basically while debugging the next command can sometimes take more than 5 seconds while it usually tooks 30ms before. It is not target dependent I see that happening with sparc, ppc, riscv, etc.. but only on Windows

Re: [Qemu-devel] [PATCH 3/9] chardev: use a child source for qio input source

2018-08-29 Thread Daniel P . Berrangé
On Tue, Aug 28, 2018 at 12:23:16AM +0200, Marc-André Lureau wrote: > GLib child source were added with version 2.28. We can use them now > that we bumped our requirement to 2.40. > > Signed-off-by: Marc-André Lureau > --- > chardev/char-io.c | 48 +-- >

[Qemu-devel] [PATCH 3/9] chardev: use a child source for qio input source

2018-08-27 Thread Marc-André Lureau
GLib child source were added with version 2.28. We can use them now that we bumped our requirement to 2.40. Signed-off-by: Marc-André Lureau --- chardev/char-io.c | 48 +-- 1 file changed, 5 insertions(+), 43 deletions(-) diff --git a/chardev/char-io.