Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Dec 2016 22:50:10 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-doc@FreeBSD.org
Subject:   [Bug 192266] np_temp omitted from {SLIST,STAILQ,TAILQ} section examples in queue(3)
Message-ID:  <bug-192266-9-PvyebWLslP@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-192266-9@https.bugs.freebsd.org/bugzilla/>
References:  <bug-192266-9@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D192266

Diego Casati <diego.casati@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |diego.casati@gmail.com

--- Comment #1 from Diego Casati <diego.casati@gmail.com> ---
Hi --

Is this ticket still valid? I've compared what's on sys/queue.h with queue.3
and did not find the discrepancies noted by the user.

queue.h defines these functions:

#define SLIST_FOREACH_SAFE(var, head, field, tvar)                      \
#define SLIST_FOREACH_FROM_SAFE(var, head, field, tvar)                 \
#define STAILQ_FOREACH_SAFE(var, head, field, tvar)                     \
#define STAILQ_FOREACH_FROM_SAFE(var, head, field, tvar)                \
#define LIST_FOREACH_SAFE(var, head, field, tvar)                       \
#define LIST_FOREACH_FROM_SAFE(var, head, field, tvar)                  \
#define TAILQ_FOREACH_SAFE(var, head, field, tvar)                      \
#define TAILQ_FOREACH_FROM_SAFE(var, head, field, tvar)                 \
#define TAILQ_FOREACH_REVERSE_SAFE(var, head, headname, field, tvar)    \
#define TAILQ_FOREACH_REVERSE_FROM_SAFE(var, head, headname, field, tvar) \

Every example on queue.3 that uses these functions do make a reference to t=
var
(declared as np_temp on the man page).

SLIST_FOREACH_SAFE(np, &head, entries, np_temp) {
STAILQ_FOREACH_SAFE(np, &head, entries, np_temp) {
LIST_FOREACH_SAFE(np, &head, entries, np_temp) {
TAILQ_FOREACH_SAFE(np, &head, entries, np_temp) {


Did I miss anything ?=20

thanks,

-dcasati

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-192266-9-PvyebWLslP>