All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/22] man3: SYNOPSIS: Use 'restrict' in prototypes (batch 3)
@ 2021-03-05 23:50 Alejandro Colomar
  2021-03-05 23:50 ` [PATCH 01/22] getservent_r.3: SYNOPSIS: Use 'restrict' in prototypes Alejandro Colomar
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Alejandro Colomar @ 2021-03-05 23:50 UTC (permalink / raw)
  To: mtk.manpages
  Cc: Alejandro Colomar, linux-man, libc-alpha, Heinrich Schuchardt

Hi Michael,

This fixes up to pthread_attr_setguardsize.3 to use 'restrict'.
Please have a special look at printf.3, because of the ffix.

Also, I included in this patchset one patch about 'volatile': malloc_hook.3.
I introduced it by accident into this patch set,
and I'm too lazy to remove it :P
I have no other patches related to 'volatile' pending.
If you think it's likely that there are more cases, please tell me,
and I'll try to have a look (I'd have to create a list of
man[23] variables for that, similar to man_lsfunc()).

Cheers,

Alex

Alejandro Colomar (22):
  getservent_r.3: SYNOPSIS: Use 'restrict' in prototypes
  getsubopt.3: SYNOPSIS: Use 'restrict' in prototypes
  glob.3: SYNOPSIS: Use 'restrict' in prototypes
  iconv.3: SYNOPSIS: Use 'restrict' in prototypes
  inet_ntop.3: SYNOPSIS: Use 'restrict' in prototypes
  inet_pton.3: SYNOPSIS: Use 'restrict' in prototypes
  lio_listio.3: SYNOPSIS: Use 'restrict' in prototypes
  makecontext.3: SYNOPSIS: Use 'restrict' in prototypes
  malloc_hook.3: SYNOPSIS: Use 'volatile' in prototypes
  mbrlen.3: SYNOPSIS: Use 'restrict' in prototypes
  mbrtowc.3: SYNOPSIS: Use 'restrict' in prototypes
  mbsnrtowcs.3: SYNOPSIS: Use 'restrict' in prototypes
  mbsrtowcs.3: SYNOPSIS: Use 'restrict' in prototypes
  mbstowcs.3: SYNOPSIS: Use 'restrict' in prototypes
  mbtowc.3: SYNOPSIS: Use 'restrict' in prototypes
  mempcpy.3: SYNOPSIS: Use 'restrict' in prototypes
  mq_getattr.3: SYNOPSIS: Use 'restrict' in prototypes
  mq_receive.3: SYNOPSIS: Use 'restrict' in prototypes
  posix_spawn.3: SYNOPSIS: Use 'restrict' in prototypes
  posix_spawn.3: SYNOPSIS: Use 'restrict' in prototypes
  printf.3: SYNOPSIS: Use 'restrict' in prototypes; ffix too
  pthread_attr_setguardsize.3: SYNOPSIS: Use 'restrict' in prototypes

 man3/getservent_r.3              | 21 +++++++++++++--------
 man3/getsubopt.3                 |  4 ++--
 man3/glob.3                      |  4 ++--
 man3/iconv.3                     |  4 ++--
 man3/inet_ntop.3                 |  4 ++--
 man3/inet_pton.3                 |  3 ++-
 man3/lio_listio.3                |  4 ++--
 man3/makecontext.3               |  6 ++++--
 man3/malloc_hook.3               | 10 +++++-----
 man3/mbrlen.3                    |  3 ++-
 man3/mbrtowc.3                   |  5 +++--
 man3/mbsnrtowcs.3                |  5 +++--
 man3/mbsrtowcs.3                 |  4 ++--
 man3/mbstowcs.3                  |  3 ++-
 man3/mbtowc.3                    |  3 ++-
 man3/mempcpy.3                   |  7 +++++--
 man3/mq_getattr.3                |  4 ++--
 man3/mq_receive.3                |  6 +++---
 man3/posix_spawn.3               | 18 ++++++++++--------
 man3/printf.3                    | 29 ++++++++++++++++++-----------
 man3/pthread_attr_setguardsize.3 |  4 ++--
 21 files changed, 88 insertions(+), 63 deletions(-)

-- 
2.30.1.721.g45526154a5


^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2021-03-07 10:21 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-05 23:50 [PATCH 00/22] man3: SYNOPSIS: Use 'restrict' in prototypes (batch 3) Alejandro Colomar
2021-03-05 23:50 ` [PATCH 01/22] getservent_r.3: SYNOPSIS: Use 'restrict' in prototypes Alejandro Colomar
2021-03-05 23:50 ` [PATCH 02/22] getsubopt.3: " Alejandro Colomar
2021-03-05 23:50 ` [PATCH 03/22] glob.3: " Alejandro Colomar
2021-03-05 23:50 ` [PATCH 04/22] iconv.3: " Alejandro Colomar
2021-03-05 23:50 ` [PATCH 05/22] inet_ntop.3: " Alejandro Colomar
2021-03-05 23:50 ` [PATCH 06/22] inet_pton.3: " Alejandro Colomar
2021-03-05 23:50 ` [PATCH 07/22] lio_listio.3: " Alejandro Colomar
2021-03-05 23:50 ` [PATCH 08/22] makecontext.3: " Alejandro Colomar
2021-03-05 23:50 ` [PATCH 09/22] malloc_hook.3: SYNOPSIS: Use 'volatile' " Alejandro Colomar
2021-03-05 23:50 ` [PATCH 10/22] mbrlen.3: SYNOPSIS: Use 'restrict' " Alejandro Colomar
2021-03-05 23:50 ` [PATCH 11/22] mbrtowc.3: " Alejandro Colomar
2021-03-05 23:50 ` [PATCH 12/22] mbsnrtowcs.3: " Alejandro Colomar
2021-03-05 23:50 ` [PATCH 13/22] mbsrtowcs.3: " Alejandro Colomar
2021-03-05 23:50 ` [PATCH 14/22] mbstowcs.3: " Alejandro Colomar
2021-03-05 23:50 ` [PATCH 15/22] mbtowc.3: " Alejandro Colomar
2021-03-05 23:51 ` [PATCH 16/22] mempcpy.3: " Alejandro Colomar
2021-03-05 23:51 ` [PATCH 17/22] mq_getattr.3: " Alejandro Colomar
2021-03-05 23:51 ` [PATCH 18/22] mq_receive.3: " Alejandro Colomar
2021-03-05 23:51 ` [PATCH 19/22] posix_spawn.3: " Alejandro Colomar
2021-03-05 23:51 ` [PATCH 20/22] " Alejandro Colomar
2021-03-05 23:51 ` [PATCH 21/22] printf.3: SYNOPSIS: Use 'restrict' in prototypes; ffix too Alejandro Colomar
2021-03-05 23:51 ` [PATCH 22/22] pthread_attr_setguardsize.3: SYNOPSIS: Use 'restrict' in prototypes Alejandro Colomar
2021-03-07 10:20 ` [PATCH 00/22] man3: SYNOPSIS: Use 'restrict' in prototypes (batch 3) Michael Kerrisk (man-pages)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.