diff options
author | Rob Pierce <rob@cvs.openbsd.org> | 2022-02-07 22:57:48 +0000 |
---|---|---|
committer | Rob Pierce <rob@cvs.openbsd.org> | 2022-02-07 22:57:48 +0000 |
commit | 4c7ac95e40bab13bd994706e38e8cc3472200650 (patch) | |
tree | 391457883dd5bc433802e98c44e8aaf83a4c397b /bin/ps/print.c | |
parent | a376d7d0fa8ed83660d7d34914c2dead4c839b02 (diff) |
New status flag: 'c' - process is chrooted.
Feedback and tweaks from deraadt@ guenther@
Ok bluhm@ deraadt@
Diffstat (limited to 'bin/ps/print.c')
-rw-r--r-- | bin/ps/print.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/ps/print.c b/bin/ps/print.c index 40e0622420f..4e49a7fc3c6 100644 --- a/bin/ps/print.c +++ b/bin/ps/print.c @@ -1,4 +1,4 @@ -/* $OpenBSD: print.c,v 1.79 2022/01/05 04:10:36 guenther Exp $ */ +/* $OpenBSD: print.c,v 1.80 2022/02/07 22:57:47 rob Exp $ */ /* $NetBSD: print.c,v 1.27 1995/09/29 21:58:12 cgd Exp $ */ /*- @@ -289,6 +289,8 @@ printstate(const struct kinfo_proc *kp, VARENT *ve) else *cp++ = 'u'; } + if (kp->p_eflag & EPROC_CHROOT) + *cp++ = 'c'; *cp = '\0'; if (state == 'R' && kp->p_cpuid != KI_NOCPU) { |