All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] man2: SYNOPSIS: Use syscall, and fix includes.
@ 2021-05-21 23:25 Alejandro Colomar
  2021-05-21 23:25 ` [PATCH 01/10] open.2: Remove unused <sys/stat.h> Alejandro Colomar
                   ` (9 more replies)
  0 siblings, 10 replies; 34+ messages in thread
From: Alejandro Colomar @ 2021-05-21 23:25 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Alejandro Colomar, linux-man

Hi Michael,

Almost finished these:
$ man_lsfunc man2 | sed -n '/socketcall/,$p' | wc -l
67
$ man_lsfunc man2 | wc -l
401
$

A remainder for myself of commands needed to do this:

.../man-pages$ man_section man2 SYNOPSIS 'CONFORMING TO' NOTES \
               | sed -n '/SOCKETCALL/,$p' \
               | sponge | less;


.../glibc$ man_lsfunc ../../linux/man-pages/man2 \
           | while read -r syscall; do \
                   echo "=============================  ${syscall}"; \
                   grep_glibc_prototype ${syscall}; \
           done \
           | sed -e 's/\bextern //' -e 's/\b_*//g' \
           | sed -n '/socketcall/,$p' \
           | sponge | less;

Kind regards,

Alex


Alejandro Colomar (10):
  open.2: Remove unused <sys/stat.h>
  rt_sigqueueinfo.2: Use syscall(SYS_...); for system calls without a
    wrapper
  seccomp.2: Document why each header is needed
	(not sending this one; already sent last week)
	<https://lore.kernel.org/linux-man/20210515182254.186607-1-alx.manpages@gmail.com/T/#u>
  seccomp.2: Use syscall(SYS_...); for system calls without a wrapper
	(depends on the previous one)
  set_thread_area.2: Use syscall(SYS_...); for system calls without a
    wrapper
  set_tid_address.2: Use syscall(SYS_...); for system calls without a
    wrapper
  sgetmask.2: Use syscall(SYS_...); for system calls without a wrapper
  shmop.2: Remove unused include
  sigprocmask.2: Use syscall(SYS_...); for raw system calls
  socketcall.2: Use syscall(SYS_...); for system calls without a wrapper

 man2/open.2            |  1 -
 man2/rt_sigqueueinfo.2 | 11 ++++++++---
 man2/seccomp.2         | 24 +++++++++++++-----------
 man2/set_thread_area.2 | 24 ++++++++++++------------
 man2/set_tid_address.2 | 13 +++++++------
 man2/sgetmask.2        | 15 ++++++++-------
 man2/shmop.2           |  1 -
 man2/sigprocmask.2     |  8 ++++++--
 man2/socketcall.2      | 15 ++++++++-------
 9 files changed, 62 insertions(+), 50 deletions(-)

-- 
2.31.1


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

end of thread, other threads:[~2021-06-09 22:31 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-21 23:25 [PATCH 00/10] man2: SYNOPSIS: Use syscall, and fix includes Alejandro Colomar
2021-05-21 23:25 ` [PATCH 01/10] open.2: Remove unused <sys/stat.h> Alejandro Colomar
2021-05-21 23:25 ` [PATCH 02/10] rt_sigqueueinfo.2: Use syscall(SYS_...); for system calls without a wrapper Alejandro Colomar
2021-05-21 23:25 ` [PATCH 04/10] seccomp.2: " Alejandro Colomar
2021-05-21 23:25 ` [PATCH 05/10] set_thread_area.2: " Alejandro Colomar
2021-05-21 23:25 ` [PATCH 06/10] set_tid_address.2: " Alejandro Colomar
2021-05-21 23:25 ` [PATCH 07/10] sgetmask.2: " Alejandro Colomar
2021-05-21 23:25 ` [PATCH 08/10] shmop.2: Remove unused include Alejandro Colomar
2021-05-21 23:25 ` [PATCH 09/10] sigprocmask.2: Use syscall(SYS_...); for raw system calls Alejandro Colomar
2021-05-21 23:25 ` [PATCH 10/10] socketcall.2: Use syscall(SYS_...); for system calls without a wrapper Alejandro Colomar
2021-05-24 18:19   ` [PATCH v2 01/10] open.2: Remove unused <sys/stat.h> Alejandro Colomar
2021-06-09 22:23     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 02/10] rt_sigqueueinfo.2: Use syscall(SYS_...); for system calls without a wrapper Alejandro Colomar
2021-06-09 22:24     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 03/10] seccomp.2: Document why each header is needed Alejandro Colomar
2021-05-24 19:34     ` Alejandro Colomar (man-pages)
2021-06-09 22:30       ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 04/10] seccomp.2: Use syscall(SYS_...); for system calls without a wrapper Alejandro Colomar
2021-06-09 22:31     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 05/10] set_thread_area.2: " Alejandro Colomar
2021-06-09 22:24     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 06/10] set_tid_address.2: " Alejandro Colomar
2021-06-09 22:25     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 07/10] sgetmask.2: " Alejandro Colomar
2021-06-09 22:25     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 08/10] shmop.2: Remove unused include Alejandro Colomar
2021-06-09 22:25     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 09/10] sigprocmask.2: Use syscall(SYS_...); for raw system calls Alejandro Colomar
2021-06-09 22:26     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 10/10] socketcall.2: Use syscall(SYS_...); for system calls without a wrapper Alejandro Colomar
2021-06-09 22:27     ` Michael Kerrisk (man-pages)
2021-05-24 19:09 ` [PATCH 00/10] man2: SYNOPSIS: Use syscall, and fix includes Alejandro Colomar (man-pages)
2021-06-09 22:28   ` Michael Kerrisk (man-pages)
2021-06-09 22:29   ` 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.