linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Michael Kerrisk (man-pages)" <mtk.manpages@gmail.com>
To: Alejandro Colomar <colomar.6.4.3@gmail.com>
Cc: mtk.manpages@gmail.com, linux-man@vger.kernel.org,
	libc-alpha@sourceware.org
Subject: Re: [PATCH 00/11] circleq.3: Fork from queue.3
Date: Fri, 23 Oct 2020 18:19:58 +0200	[thread overview]
Message-ID: <4c6214c6-23f0-61bd-9408-0afb01b88fa9@gmail.com> (raw)
In-Reply-To: <20201023145736.102750-1-colomar.6.4.3@gmail.com>

Hello Alex,

On 10/23/20 4:57 PM, Alejandro Colomar wrote:
> Hi Michael,
> 
> It's going much faster than I thought :-)
> 
> There's a detail I wasn't sure about:
> 
> There are BSDs that don't have CIRCLEQ macros,
> or at least it isn't documented there (FreeBSD comes to my mind).
> So I'm not sure CIRCLEQ originated at the same time as the others (4.4BSD).
> Maybe you know better.
> That affects patches 07/10 and 08/10.

I don't know, I'm sorry.  But, i think we don't need to worry about it too much.

> Please, apply these patches after "queue.3: Sort alphabetically".

Done. I've applied this whole series. Thanks!

Cheers,

Michael

> Alejandro Colomar (11):
>   circleq.3: New page that will hold the (circleq) content of queue.3
>   circleq.3, queue.3: NAME: Move code from queue-3 to circleq.3
>   circleq.3, queue.3: SYNOPSIS: Move code from queue.3 to circleq.3
>   circleq.3, queue.3: DESCRIPTION: Move circleq specific code from
>     queue.3 to circleq.3
>   circleq.3, queue.3: EXAMPLES: Move circleq example program from
>     queue.3 to circleq.3
>   queue.3: ffix
>   circleq.3: Copy and adapt code from queue.3
>   circleq.3: ffix: Use man markup
>   circleq.3: Add remaining details to complete the page
>   CIRCLEQ_ENTRY.3, CIRCLEQ_HEAD.3, CIRCLEQ_INIT.3,
>     CIRCLEQ_INSERT_AFTER.3, CIRCLEQ_INSERT_BEFORE.3,
>     CIRCLEQ_INSERT_HEAD.3, CIRCLEQ_INSERT_TAIL.3, CIRCLEQ_REMOVE.3: Link
>     to the new circleq(3) page instead of queue(3)
>   queue.3: SEE ALSO: Add circleq(3)
> 
>  man3/CIRCLEQ_ENTRY.3         |   2 +-
>  man3/CIRCLEQ_HEAD.3          |   2 +-
>  man3/CIRCLEQ_INIT.3          |   2 +-
>  man3/CIRCLEQ_INSERT_AFTER.3  |   2 +-
>  man3/CIRCLEQ_INSERT_BEFORE.3 |   2 +-
>  man3/CIRCLEQ_INSERT_HEAD.3   |   2 +-
>  man3/CIRCLEQ_INSERT_TAIL.3   |   2 +-
>  man3/CIRCLEQ_REMOVE.3        |   2 +-
>  man3/circleq.3               | 354 +++++++++++++++++++++++++++++++++++
>  man3/queue.3                 | 234 +----------------------
>  10 files changed, 365 insertions(+), 239 deletions(-)
>  create mode 100644 man3/circleq.3
> 


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

      parent reply	other threads:[~2020-10-23 16:20 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-23 14:57 [PATCH 00/11] circleq.3: Fork from queue.3 Alejandro Colomar
2020-10-23 14:57 ` [PATCH 01/11] circleq.3: New page that will hold the (circleq) content of queue.3 Alejandro Colomar
2020-10-23 14:57 ` [PATCH 02/11] circleq.3, queue.3: NAME: Move code from queue-3 to circleq.3 Alejandro Colomar
2020-10-23 14:57 ` [PATCH 03/11] circleq.3, queue.3: SYNOPSIS: Move code from queue.3 " Alejandro Colomar
2020-10-23 14:57 ` [PATCH 04/11] circleq.3, queue.3: DESCRIPTION: Move circleq specific " Alejandro Colomar
2020-10-23 14:57 ` [PATCH 05/11] circleq.3, queue.3: EXAMPLES: Move circleq example program " Alejandro Colomar
2020-10-23 14:57 ` [PATCH 06/11] queue.3: ffix Alejandro Colomar
2020-10-23 14:57 ` [PATCH 07/11] circleq.3: Copy and adapt code from queue.3 Alejandro Colomar
2020-10-23 14:57 ` [PATCH 08/11] circleq.3: ffix: Use man markup Alejandro Colomar
2020-10-23 14:57 ` [PATCH 09/11] circleq.3: Add remaining details to complete the page Alejandro Colomar
2020-10-23 14:57 ` [PATCH 10/11] CIRCLEQ_ENTRY.3, CIRCLEQ_HEAD.3, CIRCLEQ_INIT.3, CIRCLEQ_INSERT_AFTER.3, CIRCLEQ_INSERT_BEFORE.3, CIRCLEQ_INSERT_HEAD.3, CIRCLEQ_INSERT_TAIL.3, CIRCLEQ_REMOVE.3: Link to the new circleq(3) page instead of queue(3) Alejandro Colomar
2020-10-23 14:57 ` [PATCH 11/11] queue.3: SEE ALSO: Add circleq(3) Alejandro Colomar
2020-10-23 16:19 ` Michael Kerrisk (man-pages) [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4c6214c6-23f0-61bd-9408-0afb01b88fa9@gmail.com \
    --to=mtk.manpages@gmail.com \
    --cc=colomar.6.4.3@gmail.com \
    --cc=libc-alpha@sourceware.org \
    --cc=linux-man@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).