aboutsummaryrefslogtreecommitdiff
path: root/lib/libutil/kinfo_getproc.3
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: two-line nroff patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
* libutil: Document function HISTORY within the manpagesGordon Bergling2020-06-141-1/+6
| | | | | | | | | | Reviewed by: bcr (mentor) Approved by: bcr (mentor) MFC after: 7 days Differential Revision: https://reviews.freebsd.org/D24795 Notes: svn path=/head/; revision=362169
* Add <sys/user.h> to the SYNOPSIS of the kinfo_get*() functions since theseJohn Baldwin2015-05-271-1/+2
| | | | | | | | | functions all return types that are defined in that header. MFC after: 1 week Notes: svn path=/head/; revision=283622
* Fixed documented prototype of kinfo_getproc(3).Ruslan Ermilov2013-03-011-2/+2
| | | | Notes: svn path=/head/; revision=247534
* mdoc: sort prologue macros.Joel Dahl2012-03-261-1/+1
| | | | Notes: svn path=/head/; revision=233520
* Fix various typos in manual pages.Glen Barber2012-02-251-2/+2
| | | | | | | | | Submitted by: amdmi3 PR: 165431 MFC after: 1 week Notes: svn path=/head/; revision=232157
* - Commit work from libprocstat project. These patches add support for runtimeStanislav Sedov2011-05-121-0/+73
file and processes information retrieval from the running kernel via sysctl in the form of new library, libprocstat. The library also supports KVM backend for analyzing memory crash dumps. Both procstat(1) and fstat(1) utilities have been modified to take advantage of the library (as the bonus point the fstat(1) utility no longer need superuser privileges to operate), and the procstat(1) utility is now able to display information from memory dumps as well. The newly introduced fuser(1) utility also uses this library and able to operate via sysctl and kvm backends. The library is by no means complete (e.g. KVM backend is missing vnode name resolution routines, and there're no manpages for the library itself) so I plan to improve it further. I'm commiting it so it will get wider exposure and review. We won't be able to MFC this work as it relies on changes in HEAD, which was introduced some time ago, that break kernel ABI. OTOH we may be able to merge the library with KVM backend if we really need it there. Discussed with: rwatson Notes: svn path=/head/; revision=221807