aboutsummaryrefslogtreecommitdiff
path: root/lib/libprocstat/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Provide a simple manual page for libprocstat(3).Sergey Kandaurov2011-07-121-2/+4
| | | | | | | Reviewed by: jilles, gjb Notes: svn path=/head/; revision=223953
* Add missing libkvm and libutil dependencies.Sergey Kandaurov2011-06-251-0/+2
| | | | | | | | | | Now libprocstat takes care of its own dependencies and does not require applications to specify them. Reviewed by: stas, jilles Notes: svn path=/head/; revision=223532
* - Add symbol versioning to libprocstat.Stanislav Sedov2011-05-141-0/+3
| | | | | | | Suggested by: kib Notes: svn path=/head/; revision=221931
* - Don't try to build NWFS support module if NCP/IPX is disabled in the build.Stanislav Sedov2011-05-121-2/+6
| | | | | | | | | | - Rename ZFS definition to LIBPROCSTAT_ZFS to be consistent with NWFS and to prevent possible collisions. Reported by: many Notes: svn path=/head/; revision=221824
* - Commit work from libprocstat project. These patches add support for runtimeStanislav Sedov2011-05-121-0/+36
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