Re: [Qemu-devel] [PATCH] Handle G_IO_HUP in tcp_chr_read for tcp chardev

2014-07-08 Thread Kirill Batuzov
On Mon, 7 Jul 2014, Nikolay Nikolaev wrote: > On Tue, Jul 1, 2014 at 2:52 PM, Kirill Batuzov wrote: > > Due to GLib limitations it is not possible to create several watches on one > > channel on Windows hosts. See bug #338943 in GNOME bugzilla for details: > > https://bugzilla.gnome.org/show_bug.

Re: [Qemu-devel] [PATCH] Handle G_IO_HUP in tcp_chr_read for tcp chardev

2014-07-07 Thread Nikolay Nikolaev
On Tue, Jul 1, 2014 at 2:52 PM, Kirill Batuzov wrote: > Due to GLib limitations it is not possible to create several watches on one > channel on Windows hosts. See bug #338943 in GNOME bugzilla for details: > https://bugzilla.gnome.org/show_bug.cgi?id=338943 > > Handle G_IO_HUP in tcp_chr_read. It

Re: [Qemu-devel] [PATCH] Handle G_IO_HUP in tcp_chr_read for tcp chardev

2014-07-01 Thread Kirill Batuzov
On Tue, 1 Jul 2014, Alex Bennée wrote: > > Kirill Batuzov writes: > > > Due to GLib limitations it is not possible to create several watches on one > > channel on Windows hosts. See bug #338943 in GNOME bugzilla for details: > > https://bugzilla.gnome.org/show_bug.cgi?id=338943 > > > > Handle G_

Re: [Qemu-devel] [PATCH] Handle G_IO_HUP in tcp_chr_read for tcp chardev

2014-07-01 Thread Alex Bennée
Kirill Batuzov writes: > Due to GLib limitations it is not possible to create several watches on one > channel on Windows hosts. See bug #338943 in GNOME bugzilla for details: > https://bugzilla.gnome.org/show_bug.cgi?id=338943 > > Handle G_IO_HUP in tcp_chr_read. It is already watched by corresp

Re: [Qemu-devel] [PATCH] Handle G_IO_HUP in tcp_chr_read for tcp chardev

2014-07-01 Thread Michael S. Tsirkin
On Tue, Jul 01, 2014 at 03:52:32PM +0400, Kirill Batuzov wrote: > Due to GLib limitations it is not possible to create several watches on one > channel on Windows hosts. See bug #338943 in GNOME bugzilla for details: > https://bugzilla.gnome.org/show_bug.cgi?id=338943 > > Handle G_IO_HUP in tcp_ch

Re: [Qemu-devel] [PATCH] Handle G_IO_HUP in tcp_chr_read for tcp chardev

2014-07-01 Thread Michael S. Tsirkin
On Tue, Jul 01, 2014 at 02:04:38PM +0200, Paolo Bonzini wrote: > Il 01/07/2014 13:52, Kirill Batuzov ha scritto: > >Due to GLib limitations it is not possible to create several watches on one > >channel on Windows hosts. See bug #338943 in GNOME bugzilla for details: > >https://bugzilla.gnome.org/s

Re: [Qemu-devel] [PATCH] Handle G_IO_HUP in tcp_chr_read for tcp chardev

2014-07-01 Thread Paolo Bonzini
Il 01/07/2014 13:52, Kirill Batuzov ha scritto: Due to GLib limitations it is not possible to create several watches on one channel on Windows hosts. See bug #338943 in GNOME bugzilla for details: https://bugzilla.gnome.org/show_bug.cgi?id=338943 Handle G_IO_HUP in tcp_chr_read. It is already wa

[Qemu-devel] [PATCH] Handle G_IO_HUP in tcp_chr_read for tcp chardev

2014-07-01 Thread Kirill Batuzov
Due to GLib limitations it is not possible to create several watches on one channel on Windows hosts. See bug #338943 in GNOME bugzilla for details: https://bugzilla.gnome.org/show_bug.cgi?id=338943 Handle G_IO_HUP in tcp_chr_read. It is already watched by corresponding watch. Also remove the seco