mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
3d91be41d1
of the missing functionality from procfs(4) and new functionality for monitoring and debugging specific processes. procstat(1) operates in the following modes: -b Display binary information for the process. -c Display command line arguments for the process. -f Display file descriptor information for the process. -k Display the stacks of kernel threads in the process. -s Display security credential information for the process. -t Display thread information for the process. -v Display virtual memory mappings for the process. Further revision and modes are expected. Testing, ideas, etc: cognet, sam, Skip Ford <skip at menantico dot com> Wesley Shields <wxs at atarininja dot org>
16 lines
245 B
Makefile
16 lines
245 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= procstat
|
|
MAN= procstat.1
|
|
SRCS= procstat.c \
|
|
procstat_args.c \
|
|
procstat_basic.c \
|
|
procstat_bin.c \
|
|
procstat_cred.c \
|
|
procstat_files.c \
|
|
procstat_kstack.c \
|
|
procstat_threads.c \
|
|
procstat_vm.c
|
|
|
|
.include <bsd.prog.mk>
|