Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Jul 2002 12:58:24 -0700 (PDT)
From:      Julian Elischer <julian@elischer.org>
To:        Jonathan Lemon <jlemon@flugsvamp.com>
Cc:        current@freebsd.org
Subject:   Re: additional queue macro
Message-ID:  <Pine.BSF.4.21.0207021249180.97650-100000@InterJet.elischer.org>
In-Reply-To: <20020702095402.D1020@prism.flugsvamp.com>

next in thread | previous in thread | raw e-mail | index | archive | help


On Tue, 2 Jul 2002, Jonathan Lemon wrote:

> What do people think about adding the following macro to <sys/queue.h>?
> (I don't care much about the name, just the functionality)
> 
>     #define TAILQ_FOREACH_TMP(var, tmp, head, field)                     \
>             for ((var) = TAILQ_FIRST((head));                            \
>                 (var) && (((tmp) = TAILQ_NEXT((var), field)) || 1);      \
>                 (var) = (tmp))

Certainly this is moving in the right direction..
(acknowleging the problem).. It does the job.
but if someone knows to use it then they probably also
know to use a temp variable themselves. 

It does work in that there is very little the writer can do to screw this
up.

The question is simply "is it waranted?"
It does add complexity.. I guess it needs to be added to all
the other types as well (LIST, STAILQ etc)

> 
> Essentially, this provides a traversal of the tailq that is safe 
> from element removal, while being simple to drop in to those sections
> of the code that need updating, as evidenced in the patch below.
> -- 
> Jonathan



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0207021249180.97650-100000>