qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 10/19] char: add gio watch fn for tcp backends


From: Amit Shah
Subject: Re: [Qemu-devel] [PATCH 10/19] char: add gio watch fn for tcp backends
Date: Tue, 19 Feb 2013 13:14:03 +0530

On (Mon) 18 Feb 2013 [15:48:07], Anthony Liguori wrote:
> From: Amit Shah <address@hidden>
> 
> Signed-off-by: Amit Shah <address@hidden>
> ---
>  qemu-char.c | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/qemu-char.c b/qemu-char.c
> index e59e580..160bcea 100644
> --- a/qemu-char.c
> +++ b/qemu-char.c
> @@ -2462,6 +2462,12 @@ static ssize_t tcp_chr_recv(CharDriverState *chr, char 
> *buf, size_t len)
>  }
>  #endif
>  
> +static GSource *tcp_chr_add_watch(CharDriverState *chr, GIOCondition cond)
> +{
> +    TCPCharDriver *s = chr->opaque;
> +    return g_io_create_watch(s->chan, cond);

Thanks for noticing and fixing this up!

                Amit



reply via email to

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