freebsd-src/bin/ps/Makefile
Konstantin Belousov 62e6ca0f07 ps(1): clean up after swapout removal
The process flag P_INMEM is always set.  Eliminate all checks for the
bit.  Also eliminate LAZY_PS define and code covered by it: we  do not
have an u-area for long time, and it cannot be swapped out.

Also eliminate setting controlled by the '-f' switch, but accept it for
backward compatibility.

The 'W' process secondary state (swapped out) is impossible, stop
calculating it.

Reviewed by:	markj
Sponsored by:	The FreeBSD Foundation
Differential revision:	https://reviews.freebsd.org/D47492
2024-11-09 19:22:42 +02:00

8 lines
115 B
Makefile

PACKAGE=runtime
PROG= ps
SRCS= fmt.c keyword.c nlist.c print.c ps.c
LIBADD= m kvm jail xo
.include <bsd.prog.mk>