aboutsummaryrefslogtreecommitdiff
path: root/lib/libmemstat/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Bump the version of all non-symbol-versioned shared libraries inKen Smith2009-07-191-1/+1
| | | | | | | | | | | preparation for 8.0-RELEASE. Add the previous version of those libraries to ObsoleteFiles.inc and bump __FreeBSD_Version. Reviewed by: kib Approved by: re (rwatson) Notes: svn path=/head/; revision=195767
* Bump library versions in preparation for 7.0.Daniel Eischen2007-05-211-1/+1
| | | | | | | Ok'd by: kan Notes: svn path=/head/; revision=169807
* Add symlinks for kvm access methods for memstat(3).Robert Watson2005-11-131-0/+3
| | | | | | | MFC after: 3 days Notes: svn path=/head/; revision=152377
* Add missing shared library interdependencies.Ruslan Ermilov2005-11-101-0/+2
| | | | Notes: svn path=/head/; revision=152285
* Having decided not to provide a libmemstat(3) error number to textRobert Watson2005-07-241-0/+1
| | | | | | | | | | | | | | | | conversion routine, now change my mind and add one, memstat_strerror(3), which returns a const char * pointer to a string describing the error, to be used on the results of memstat_mtl_geterror(). While here, also correct a minor typo in the HISTORY man page. Pointers on improving ease of internationalization would be appreciated. MFC after: 1 day Notes: svn path=/head/; revision=148359
* Document additional aspects of libmemstat(3):Robert Watson2005-07-241-0/+1
| | | | | | | | | | | - Short description of each memory type access method. - Descriptions of libmemstat(3) errors and memstat_mtl_geterror(3). MFC after: 1 day Notes: svn path=/head/; revision=148358
* Add libmemstat(3), a library for use by debugging and monitoringRobert Watson2005-07-141-0/+23
applications in tracking kernel memory statistics. It provides an abstracted interface to uma(9) and malloc(9) statistics, wrapped around the recently added binary stream sysctls for the allocators. Using this interface, it is easy to build monitoring tools, query specific memory types for usage information, etc. Facilities are provided for binding caller-provided data to memory types, incremental updates of memory types, and queries that span multiple allocators. Support for additional allocators is (relatively) easy to add. The API for libmemstat(3) will probably change some over time as consumers are written, and requirements evolve. It is written to avoid encoding ABIs for data structure layout into consuming applications for this reason. MFC after: 1 week Notes: svn path=/head/; revision=147997