Re: [patch] queue.3: Remove wrong code from example

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

 



Hello Lejandro,

On 8/12/20 9:43 AM, Alejandro Colomar wrote:
> There was code containing ``CIRCLEQ_*`` in the examples for ``TAILQ_*``. 
>   It was introduced by accident in commit ``041abbe``.
> 
>  From 0c9dfbe9b1ce1130e9a92d1a16fbecd4a08bbe29 Mon Sep 17 00:00:00 2001
> From: Alejandro Colomar <colomar.6.4.3@xxxxxxxxx>
> Date: Wed, 12 Aug 2020 09:11:27 +0200
> Subject: [PATCH] queue.3: Remove wrong code from example
> 
> Signed-off-by: Alejandro Colomar <colomar.6.4.3@xxxxxxxxx>

Thanks. Patch applied.

Cheers,

Michael


> ---
>   man3/queue.3 | 12 ------------
>   1 file changed, 12 deletions(-)
> 
> diff --git a/man3/queue.3 b/man3/queue.3
> index ff1f42f3a..260a5b8a5 100644
> --- a/man3/queue.3
> +++ b/man3/queue.3
> @@ -1219,18 +1219,6 @@ while (n1 != NULL) {
>   }
> 
>   TAILQ_INIT(&head);
> -n2 = malloc(sizeof(struct entry));  /* Insert before. */
> -CIRCLEQ_INSERT_BEFORE(&head, n1, n2, entries);
> -                                    /* Forward traversal. */
> -for (np = head.cqh_first; np != (void *)&head;
> -        np = np\->entries.cqe_next)
> -    np\-> ...
> -                                    /* Reverse traversal. */
> -for (np = head.cqh_last; np != (void *)&head; np = np\->entries.cqe_prev)
> -    np\-> ...
> -                                    /* Delete. */
> -while (head.cqh_first != (void *)&head)
> -    CIRCLEQ_REMOVE(&head, head.cqh_first, entries);
>   .Ed
>   .Sh CONFORMING TO
>   Not in POSIX.1, POSIX.1-2001 or POSIX.1-2008.
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/



[Index of Archives]     [Kernel Documentation]     [Netdev]     [Linux Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]

  Powered by Linux