linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/24] Yet more prototype fixes
@ 2014-05-21 14:57 Rasmus Villemoes
       [not found] ` <1400684275-20972-1-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
  0 siblings, 1 reply; 52+ messages in thread
From: Rasmus Villemoes @ 2014-05-21 14:57 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, Rasmus Villemoes

Here's another round of prototype fixes, with various other small
things mixed in.

Rasmus Villemoes (24):
  inet.3: Fix prototype
  makecontext.3: Fix prototype
  makedev.3: Fix prototype
  malloc_trim.3: Fix prototype
  mq_getattr.3: Fix prototype
  perror.3: Fix declaration
  pthread_sigqueue.3: Include needed header
  pthread_attr_set*.3: Constify parameters
  pthread_cleanup_push_defer_np.3: Mention feature test macro
  pthread_setname_np.3: Fix prototype
  pthread_setschedparam.3: Fix prototypes
  pthread_setschedprio.3: Fix prototype
  rcmd.3: Fix prototypes
  re_comp.3: Fix prototypes
  rexec.3: Fix prototypes
  rtime.3: Replace header
  resolver.3: Fix prototypes and extern-declaration
  scandir.3: Fix prototypes
  sigvec.3: Fix prototype
  setnetgrent.3: Fix prototype
  tsearch.3: Fix prototype
  getauxval.3: Fix permissions
  key_setsecret.3: Fix prototypes
  xdr.3: tfix

 man3/getauxval.3                     |  0
 man3/inet.3                          |  2 +-
 man3/key_setsecret.3                 |  6 +++---
 man3/makecontext.3                   |  2 +-
 man3/makedev.3                       |  2 +-
 man3/malloc_trim.3                   |  2 +-
 man3/mq_getattr.3                    |  2 +-
 man3/perror.3                        |  4 ++--
 man3/pthread_attr_setaffinity_np.3   |  2 +-
 man3/pthread_attr_setdetachstate.3   |  2 +-
 man3/pthread_attr_setguardsize.3     |  2 +-
 man3/pthread_attr_setinheritsched.3  |  2 +-
 man3/pthread_attr_setschedparam.3    |  2 +-
 man3/pthread_attr_setschedpolicy.3   |  2 +-
 man3/pthread_attr_setscope.3         |  2 +-
 man3/pthread_attr_setstack.3         |  2 +-
 man3/pthread_attr_setstackaddr.3     |  2 +-
 man3/pthread_attr_setstacksize.3     |  2 +-
 man3/pthread_cleanup_push_defer_np.3 |  1 +
 man3/pthread_setname_np.3            |  2 +-
 man3/pthread_setschedparam.3         |  8 ++++----
 man3/pthread_setschedprio.3          |  2 +-
 man3/pthread_sigqueue.3              | 12 +++---------
 man3/rcmd.3                          |  6 +++---
 man3/re_comp.3                       |  4 ++--
 man3/resolver.3                      | 16 ++++++++--------
 man3/rexec.3                         |  8 ++++----
 man3/rtime.3                         |  2 +-
 man3/scandir.3                       |  4 ++--
 man3/setnetgrent.3                   |  2 +-
 man3/sigvec.3                        |  2 +-
 man3/tsearch.3                       |  2 +-
 man3/xdr.3                           |  2 +-
 33 files changed, 54 insertions(+), 59 deletions(-)
 mode change 100755 => 100644 man3/getauxval.3

-- 
1.9.2

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2014-05-22  6:47 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-21 14:57 [PATCH 00/24] Yet more prototype fixes Rasmus Villemoes
     [not found] ` <1400684275-20972-1-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 14:57   ` [PATCH 01/24] inet.3: Fix prototype Rasmus Villemoes
     [not found]     ` <1400684275-20972-2-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 17:44       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 02/24] makecontext.3: " Rasmus Villemoes
     [not found]     ` <1400684275-20972-3-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 17:45       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 03/24] makedev.3: " Rasmus Villemoes
     [not found]     ` <1400684275-20972-4-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 17:46       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 04/24] malloc_trim.3: " Rasmus Villemoes
     [not found]     ` <1400684275-20972-5-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 17:47       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 05/24] mq_getattr.3: " Rasmus Villemoes
     [not found]     ` <1400684275-20972-6-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 17:49       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 06/24] perror.3: Fix declaration Rasmus Villemoes
     [not found]     ` <1400684275-20972-7-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 17:50       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 07/24] pthread_sigqueue.3: Include needed header Rasmus Villemoes
     [not found]     ` <1400684275-20972-8-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 17:56       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 08/24] pthread_attr_set*.3: Constify parameters Rasmus Villemoes
     [not found]     ` <1400684275-20972-9-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-22  6:47       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 09/24] pthread_cleanup_push_defer_np.3: Mention feature test macro Rasmus Villemoes
     [not found]     ` <1400684275-20972-10-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:06       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 10/24] pthread_setname_np.3: Fix prototype Rasmus Villemoes
     [not found]     ` <1400684275-20972-11-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:07       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 11/24] pthread_setschedparam.3: Fix prototypes Rasmus Villemoes
     [not found]     ` <1400684275-20972-12-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:08       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 12/24] pthread_setschedprio.3: Fix prototype Rasmus Villemoes
     [not found]     ` <1400684275-20972-13-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:08       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 13/24] rcmd.3: Fix prototypes Rasmus Villemoes
     [not found]     ` <1400684275-20972-14-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:09       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 14/24] re_comp.3: " Rasmus Villemoes
     [not found]     ` <1400684275-20972-15-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:10       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 15/24] rexec.3: " Rasmus Villemoes
     [not found]     ` <1400684275-20972-16-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:10       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 16/24] rtime.3: Replace header Rasmus Villemoes
     [not found]     ` <1400684275-20972-17-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:14       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 17/24] resolver.3: Fix prototypes and extern-declaration Rasmus Villemoes
     [not found]     ` <1400684275-20972-18-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:31       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 18/24] scandir.3: Fix prototypes Rasmus Villemoes
     [not found]     ` <1400684275-20972-19-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:40       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 19/24] sigvec.3: Fix prototype Rasmus Villemoes
     [not found]     ` <1400684275-20972-20-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:15       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 20/24] setnetgrent.3: " Rasmus Villemoes
     [not found]     ` <1400684275-20972-21-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:15       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 21/24] tsearch.3: " Rasmus Villemoes
     [not found]     ` <1400684275-20972-22-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:48       ` Michael Kerrisk (man-pages)
     [not found]         ` <537CF50D.2080400-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-05-21 20:02           ` Rasmus Villemoes
     [not found]             ` <87oayqew8p.fsf-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 20:15               ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 22/24] getauxval.3: Fix permissions Rasmus Villemoes
     [not found]     ` <1400684275-20972-23-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:17       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 23/24] key_setsecret.3: Fix prototypes Rasmus Villemoes
     [not found]     ` <1400684275-20972-24-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:19       ` Michael Kerrisk (man-pages)
2014-05-21 14:57   ` [PATCH 24/24] xdr.3: tfix Rasmus Villemoes
     [not found]     ` <1400684275-20972-25-git-send-email-rv-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
2014-05-21 18:17       ` Michael Kerrisk (man-pages)
2014-05-21 18:13   ` [PATCH 00/24] Yet more prototype fixes Michael Kerrisk (man-pages)

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).