* SEE ALSO: func based or man page based?
@ 2016-02-16 22:26 Mike Frysinger
[not found] ` <20160216222613.GJ7732-UgUKS2FnFs9+urZeOPWqwQ@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Mike Frysinger @ 2016-02-16 22:26 UTC (permalink / raw)
To: linux-man-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 812 bytes --]
i often remember the func name "sigprocmask". but when i'm in that page,
i have a hard time remembering the exact naming for the set operators.
rather than search, i figure just checking out the SEE ALSO section will
quickly answer me ... except it doesn't (directly).
this is what sigprocmask(2) has:
SEE ALSO
kill(2), pause(2), sigaction(2), signal(2), sigpending(2),
sigsuspend(2), pthread_sigmask(3), sigqueue(3), sigsetops(3),
signal(7)
i read that a few times and then just start picking signal related
pages until i stumble across sigsetops(3).
is there a policy against listing the functions that appear in a
grouped page ? or would it be ok to add the funcs in the sigsetops
page directly to sigprocmask's SEE ALSO ? grepping shows that at
least select_tut(2) is out of sync ...
-mike
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread[parent not found: <20160216222613.GJ7732-UgUKS2FnFs9+urZeOPWqwQ@public.gmane.org>]
* Re: SEE ALSO: func based or man page based? [not found] ` <20160216222613.GJ7732-UgUKS2FnFs9+urZeOPWqwQ@public.gmane.org> @ 2016-02-17 9:58 ` Michael Kerrisk (man-pages) [not found] ` <56C44463.105-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 0 siblings, 1 reply; 4+ messages in thread From: Michael Kerrisk (man-pages) @ 2016-02-17 9:58 UTC (permalink / raw) To: linux-man-u79uwXL29TY76Z2rM5mHXA Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, Mike Frysinger Hello Mike, On 02/16/2016 11:26 PM, Mike Frysinger wrote: > i often remember the func name "sigprocmask". but when i'm in that page, > i have a hard time remembering the exact naming for the set operators. > rather than search, i figure just checking out the SEE ALSO section will > quickly answer me ... except it doesn't (directly). > > this is what sigprocmask(2) has: > SEE ALSO > kill(2), pause(2), sigaction(2), signal(2), sigpending(2), > sigsuspend(2), pthread_sigmask(3), sigqueue(3), sigsetops(3), > signal(7) > > i read that a few times and then just start picking signal related > pages until i stumble across sigsetops(3). > > is there a policy against listing the functions that appear in a > grouped page ? There is no general policy. But obviously the man page should make this point obvious. (Other similar pages, such as sched_setaffinity(2) do make it obvious.) I added the following text: A set of functions for modifying and inspecting variables of type sigset_t ("signal sets") is described in sigsetops(3). > or would it be ok to add the funcs in the sigsetops > page directly to sigprocmask's SEE ALSO ? I'm not sure that that's necessary. There are only a few pages like this, and I think it's better to have sentences like the above. > grepping shows that at > least select_tut(2) is out of sync ... I'm not sure what you mean here. Can you elaborate please? Thanks, Michael -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Linux/UNIX System Programming Training: http://man7.org/training/ -- 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] 4+ messages in thread
[parent not found: <56C44463.105-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: SEE ALSO: func based or man page based? [not found] ` <56C44463.105-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2016-02-17 16:28 ` Mike Frysinger [not found] ` <20160217162815.GM7732-UgUKS2FnFs9+urZeOPWqwQ@public.gmane.org> 0 siblings, 1 reply; 4+ messages in thread From: Mike Frysinger @ 2016-02-17 16:28 UTC (permalink / raw) To: Michael Kerrisk (man-pages); +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 444 bytes --] On 17 Feb 2016 10:58, Michael Kerrisk (man-pages) wrote: > On 02/16/2016 11:26 PM, Mike Frysinger wrote: > > grepping shows that at > > least select_tut(2) is out of sync ... > > I'm not sure what you mean here. Can you elaborate please? select_tut lists all the sigop funcs by name and does not list the sigops manpage. conversely, sigprocmask doesn't list any sigop of the funcs by name and only lists the sigops manpage. -mike [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <20160217162815.GM7732-UgUKS2FnFs9+urZeOPWqwQ@public.gmane.org>]
* Re: SEE ALSO: func based or man page based? [not found] ` <20160217162815.GM7732-UgUKS2FnFs9+urZeOPWqwQ@public.gmane.org> @ 2016-02-18 11:10 ` Michael Kerrisk (man-pages) 0 siblings, 0 replies; 4+ messages in thread From: Michael Kerrisk (man-pages) @ 2016-02-18 11:10 UTC (permalink / raw) To: linux-man-u79uwXL29TY76Z2rM5mHXA; +Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w On 02/17/2016 05:28 PM, Mike Frysinger wrote: > On 17 Feb 2016 10:58, Michael Kerrisk (man-pages) wrote: >> On 02/16/2016 11:26 PM, Mike Frysinger wrote: >>> grepping shows that at >>> least select_tut(2) is out of sync ... >> >> I'm not sure what you mean here. Can you elaborate please? > > select_tut lists all the sigop funcs by name and does not list the > sigops manpage. conversely, sigprocmask doesn't list any sigop of > the funcs by name and only lists the sigops manpage. That's just one of the minor problems with that page :-). It's irritating that the page duplicates so much info from select(2). One day I'll get irritated enough to merge the two or seriously trim select_tut(2). Cheers, Michael -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Linux/UNIX System Programming Training: http://man7.org/training/ -- 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] 4+ messages in thread
end of thread, other threads:[~2016-02-18 11:10 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-16 22:26 SEE ALSO: func based or man page based? Mike Frysinger
[not found] ` <20160216222613.GJ7732-UgUKS2FnFs9+urZeOPWqwQ@public.gmane.org>
2016-02-17 9:58 ` Michael Kerrisk (man-pages)
[not found] ` <56C44463.105-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-02-17 16:28 ` Mike Frysinger
[not found] ` <20160217162815.GM7732-UgUKS2FnFs9+urZeOPWqwQ@public.gmane.org>
2016-02-18 11:10 ` 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).