|
Revision tags: release/13.4.0-p5, release/13.5.0-p1, release/14.2.0-p3, release/13.5.0, release/14.2.0-p2, release/14.1.0-p8, release/13.4.0-p4, release/14.1.0-p7, release/14.2.0-p1, release/13.4.0-p3, release/14.2.0, release/13.4.0, release/14.1.0, release/13.3.0, release/14.0.0 |
|
| #
fa9896e0 |
| 16-Aug-2023 |
Warner Losh <[email protected]> |
Remove $FreeBSD$: two-line nroff pattern
Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
|
|
Revision tags: release/13.2.0, release/12.4.0, release/13.1.0 |
|
| #
50d3c725 |
| 03-Apr-2022 |
Konstantin Belousov <[email protected]> |
libprocstat: document procstat_getadvlock(3)
Reviewed by: markj, rmacklem Sponsored by: The FreeBSD Foundation MFC after: 1 week Differential revision: https://reviews.freebsd.org/D34756
|
|
Revision tags: release/12.3.0, release/13.0.0 |
|
| #
16e1abe4 |
| 26-Nov-2020 |
Mateusz Piotrowski <[email protected]> |
libprocstat.3: Correct two occurrences of kvm_getprocs to procstat_getprocs
Submitted by: otis_sk.freebsd.org Reviewed by: markj MFC after: 3 days Differential Revision: https://reviews.freebsd.org/
libprocstat.3: Correct two occurrences of kvm_getprocs to procstat_getprocs
Submitted by: otis_sk.freebsd.org Reviewed by: markj MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D26151
show more ...
|
|
Revision tags: release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0, release/10.4.0 |
|
| #
b9c6d356 |
| 29-Jul-2017 |
Enji Cooper <[email protected]> |
libprocstat(3): fix arguments list for procstat_getargv(3) and procstat_getenvv(3)
Neither libcall takes a fourth argument (`char *errbuf`).
PR: 217884 Submitted by: tobik MFC after: 1 month
|
| #
45805bd7 |
| 29-Jul-2017 |
Enji Cooper <[email protected]> |
libprocstat(3): fix reference (typo) to procstat_freeenvv in description for procstat_getargv(3)
PR: 217884 MFC after: 1 month Submitted by: tobik
|
| #
e504201e |
| 29-Jul-2017 |
Enji Cooper <[email protected]> |
Add sys/socket.h to SYNOPSIS for libprocstat(3)
sys/socket.h is required for procstat_get_socket_info(3), added in r221807.
MFC after: 1 month PR: 217884 Submitted by: tobik
|
|
Revision tags: release/11.1.0 |
|
| #
c45beed8 |
| 27-Jun-2017 |
Enji Cooper <[email protected]> |
Add initial documentation for procstat_freeptlwpinfo and procstat_getptlwpinfo
MFC after: 1 month MFC with: r316286
|
|
Revision tags: release/11.0.1, release/11.0.0, release/10.3.0, release/10.2.0 |
|
| #
04017fc7 |
| 21-May-2015 |
Allan Jude <[email protected]> |
Create links to the libprocstat man pages for all of the libprocstat functions so they can be looked up by name
Add a cross refrence to libprocstat in the procstat.1 man page
Differential Revision:
Create links to the libprocstat man pages for all of the libprocstat functions so they can be looked up by name
Add a cross refrence to libprocstat in the procstat.1 man page
Differential Revision: https://reviews.freebsd.org/D2578 Suggested by: jmg Reviewed by: brueffer Approved by: wblock (mentor) MFC after: 1 week Sponsored by: ScaleEngine Inc.
show more ...
|
|
Revision tags: release/10.1.0, release/9.3.0 |
|
| #
2b7af31c |
| 23-Jun-2014 |
Baptiste Daroussin <[email protected]> |
use .Mt to mark up email addresses consistently (part3)
PR: 191174 Submitted by: Franco Fichtner <franco at lastsummer.de>
|
|
Revision tags: release/10.0.0, release/9.2.0, release/8.4.0 |
|
| #
f45590da |
| 04-May-2013 |
Sergey Kandaurov <[email protected]> |
Bump date.
|
| #
958aa575 |
| 03-May-2013 |
John Baldwin <[email protected]> |
Similar to 233760 and 236717, export some more useful info about the kernel-based POSIX semaphore descriptors to userland via procstat(1) and fstat(1): - Change sem file descriptors to track the path
Similar to 233760 and 236717, export some more useful info about the kernel-based POSIX semaphore descriptors to userland via procstat(1) and fstat(1): - Change sem file descriptors to track the pathname they are associated with and add a ksem_info() method to copy the path out to a caller-supplied buffer. - Use the fo_stat() method of shared memory objects and ksem_info() to export the path, mode, and value of a semaphore via struct kinfo_file. - Add a struct semstat to the libprocstat(3) interface along with a procstat_get_sem_info() to export the mode and value of a semaphore. - Teach fstat about semaphores and to display their path, mode, and value.
MFC after: 2 weeks
show more ...
|
| #
20ed2b43 |
| 20-Apr-2013 |
Joel Dahl <[email protected]> |
mdoc: end function context properly.
|
| #
6dd520d6 |
| 20-Apr-2013 |
Mikolaj Golub <[email protected]> |
Bump date.
|
| #
89358231 |
| 20-Apr-2013 |
Mikolaj Golub <[email protected]> |
Add procstat_getkstack function to dump kernel stacks of a process.
MFC after: 1 month
|
| #
2ff020d3 |
| 20-Apr-2013 |
Mikolaj Golub <[email protected]> |
Add procstat_getauxv function to retrieve a process auxiliary vector.
MFC after: 1 month
|
| #
4482b5e3 |
| 20-Apr-2013 |
Mikolaj Golub <[email protected]> |
Extend libprocstat with functions to retrieve process command line arguments and environment variables.
Suggested by: stas Reviewed by: jhb and stas (initial version) MFC after: 1 month
|
| #
eec6cb1c |
| 20-Apr-2013 |
Mikolaj Golub <[email protected]> |
Add procstat_getosrel function to retrieve a process osrel info.
MFC after: 1 month
|
| #
4cdf9796 |
| 20-Apr-2013 |
Mikolaj Golub <[email protected]> |
Add procstat_getpathname function to retrieve a process executable.
MFC after: 1 month
|
| #
7cc0ebfd |
| 20-Apr-2013 |
Mikolaj Golub <[email protected]> |
Add procstat_getrlimit function to retrieve a process resource limits info.
MFC after: 1 month
|
| #
5b9bcba9 |
| 20-Apr-2013 |
Mikolaj Golub <[email protected]> |
Add procstat_getumask function to retrieve a process umask.
MFC after: 1 month
|
| #
7f1d14e6 |
| 20-Apr-2013 |
Mikolaj Golub <[email protected]> |
Add procstat_getgroups function to retrieve process groups.
MFC after: 1 month
|
| #
39680c7b |
| 20-Apr-2013 |
Mikolaj Golub <[email protected]> |
Add procstat_getvmmap function to get VM layout of a process.
MFC after: 1 month
|
| #
7153ad2b |
| 20-Apr-2013 |
Mikolaj Golub <[email protected]> |
Make libprocstat(3) extract procstat notes from a process core file.
PR: kern/173723 Suggested by: jhb Glanced by: kib MFC after: 1 month
|
|
Revision tags: release/9.1.0 |
|
| #
a3fb6da9 |
| 11-May-2012 |
Glen Barber <[email protected]> |
General mdoc(7) and typo fixes.
PR: 167734 Submitted by: Nobuyuki Koganemaru (kogane!jp.freebsd.org) MFC after: 3 days
|
|
Revision tags: release/8.3.0_cvs, release/8.3.0 |
|
| #
e506e182 |
| 01-Apr-2012 |
John Baldwin <[email protected]> |
Export some more useful info about shared memory objects to userland via procstat(1) and fstat(1): - Change shm file descriptors to track the pathname they are associated with and add a shm_path()
Export some more useful info about shared memory objects to userland via procstat(1) and fstat(1): - Change shm file descriptors to track the pathname they are associated with and add a shm_path() method to copy the path out to a caller-supplied buffer. - Use the fo_stat() method of shared memory objects and shm_path() to export the path, mode, and size of a shared memory object via struct kinfo_file. - Add a struct shmstat to the libprocstat(3) interface along with a procstat_get_shm_info() to export the mode and size of a shared memory object. - Change procstat to always print out the path for a given object if it is valid. - Teach fstat about shared memory objects and to display their path, mode, and size.
MFC after: 2 weeks
show more ...
|