qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v1][ 05/23] qlist: add qlist_first()/qlist_next(


From: Stefan Hajnoczi
Subject: Re: [Qemu-devel] [PATCH v1][ 05/23] qlist: add qlist_first()/qlist_next()
Date: Wed, 18 May 2011 09:12:05 +0100

On Wed, May 18, 2011 at 1:51 AM, Michael Roth <address@hidden> wrote:
>
> Signed-off-by: Michael Roth <address@hidden>
> ---
>  qlist.h |   10 ++++++++++
>  1 files changed, 10 insertions(+), 0 deletions(-)
>
> diff --git a/qlist.h b/qlist.h
> index dbe7b92..13f22eb 100644
> --- a/qlist.h
> +++ b/qlist.h
> @@ -50,4 +50,14 @@ QObject *qlist_peek(QList *qlist);
>  int qlist_empty(const QList *qlist);
>  QList *qobject_to_qlist(const QObject *obj);
>
> +static inline QListEntry *qlist_first(QList *qlist)
> +{
> +    return qlist->head.tqh_first;

return QTAILQ_FIRST(&qlist->head);

> +}
> +
> +static inline QListEntry *qlist_next(QListEntry *entry)
> +{
> +    return entry->next.tqe_next;

return QTAILQ_NEXT(&entry->next);



reply via email to

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