Page MenuHomeFreeBSD

Create links to all of the libprocstat man pages so that the functions can be looked up by name
ClosedPublic

Authored by allanjude on May 18 2015, 8:16 PM.
Tags
None
Referenced Files
Unknown Object (File)
Jan 8 2024, 4:58 AM
Unknown Object (File)
Jan 2 2024, 8:08 AM
Unknown Object (File)
Dec 23 2023, 12:06 AM
Unknown Object (File)
Oct 15 2023, 12:22 AM
Unknown Object (File)
Aug 27 2023, 3:20 PM
Unknown Object (File)
Aug 27 2023, 3:19 PM
Unknown Object (File)
Aug 27 2023, 3:19 PM
Unknown Object (File)
Aug 27 2023, 3:18 PM
Subscribers

Details

Reviewers
eadler
jmg
wblock
brueffer
bcr
Group Reviewers
manpages
Summary

Also add a cross reference to libprocstat in the procstat.1 manpage

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage

Event Timeline

allanjude retitled this revision from to Create links to all of the libprocstat man pages so that the functions can be looked up by name Also add a cross reference to libprocstat in the procstat.1 manpage.
allanjude updated this object.
allanjude edited the test plan for this revision. (Show Details)
allanjude added reviewers: eadler, bcr, wblock, jmg.
brueffer added inline comments.
lib/libprocstat/Makefile
53

Having these sorted the same way as in the manpage synopsis usually makes it easier to check for missing entries. In this case it simply means sorting them alphabetically.

usr.bin/procstat/procstat.1
536

Sorting is by section first, by alphabet second (so libprocstat would be before ddb).

lib/libprocstat/Makefile
53

These are actually sorted based on the synopsis. I copy/pasted it and replaced the commas.

Would you rather it be alphabetical?

usr.bin/procstat/procstat.1
536

will fix

lib/libprocstat/Makefile
53

I just noticed, in the manpage they're sorted differently in the NAME section and the SYNOPSIS. NAME the way you have it here, SYNOPSIS alphabetically. I think it would make sense to have it alphabetically here and sort the NAME section in the manpage as well.

allanjude retitled this revision from Create links to all of the libprocstat man pages so that the functions can be looked up by name Also add a cross reference to libprocstat in the procstat.1 manpage to Create links to all of the libprocstat man pages so that the functions can be looked up by name.
allanjude edited edge metadata.
allanjude updated this object.

Sort the name list in libprocstat.3 alphabetically

Add procstat_getrlimit which was missing from the name list

Sort Synopsis alphabetically (a few things were out of order)

Sort MLINKS alphabetically

Add procstat_getrlimit.3 to MLINKS

Fix sorting in the 'SEE ALSO' section

This revision is now accepted and ready to land.May 20 2015, 5:24 PM
wblock edited edge metadata.

This looks good to me. Remember to build-test (breaking a src build or installworld is bad, mkay?). Also remember to use "MFC: 1 week" in the commit message.

committed rS283167: Create links to the libprocstat man pages for all of the libprocstat