qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v3 09/22] qapi: QmpOutputVisitor, implement arra


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [PATCH v3 09/22] qapi: QmpOutputVisitor, implement array handling
Date: Fri, 05 Oct 2012 10:05:03 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:15.0) Gecko/20120911 Thunderbird/15.0.1

Il 04/10/2012 19:33, Michael Roth ha scritto:
>  }
>  
> +static void qmp_output_start_carray(Visitor *v, void **obj, const char *name,
> +                                    size_t elem_count, size_t elem_size,
> +                                    Error **errp)
> +{
> +    qmp_output_start_list(v, name, errp);
> +}
> +
> +static void qmp_output_next_carray(Visitor *v, Error **errp)
> +{
> +}
> +
> +static void qmp_output_end_carray(Visitor *v, Error **errp)
> +{
> +    QmpOutputVisitor *qov = to_qov(v);
> +    qmp_output_pop(qov);

This is really qmp_output_end_list.

Paolo

> +}
> +




reply via email to

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