diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2011-04-18 21:44:57 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2011-04-18 21:44:57 +0000 |
commit | bce64c2a24fb4484b18813bef367dcc71e8a0dd0 (patch) | |
tree | dfc7f71507d6c603255802772ca128609460ca08 /bin/ps | |
parent | fd1b35e57ce1fdce5ec1dc979ff36b7649cab0c5 (diff) |
Revert the sigacts diff: NFS can apparently retain pointers to processes
until they're zombies and then send them signals (for intr mounts). Until
that is untangled, the sigacts change is unsafe. sthen@ was the victim
for this one
Diffstat (limited to 'bin/ps')
-rw-r--r-- | bin/ps/ps.1 | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/bin/ps/ps.1 b/bin/ps/ps.1 index 53abcf59a99..5e78d1ef5cf 100644 --- a/bin/ps/ps.1 +++ b/bin/ps/ps.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ps.1,v 1.73 2011/04/15 04:52:40 guenther Exp $ +.\" $OpenBSD: ps.1,v 1.74 2011/04/18 21:44:55 guenther Exp $ .\" $NetBSD: ps.1,v 1.16 1996/03/21 01:36:28 jtc Exp $ .\" .\" Copyright (c) 1980, 1990, 1991, 1993, 1994 @@ -30,7 +30,7 @@ .\" .\" @(#)ps.1 8.3 (Berkeley) 4/18/94 .\" -.Dd $Mdocdate: April 15 2011 $ +.Dd $Mdocdate: April 18 2011 $ .Dt PS 1 .Os .Sh NAME @@ -219,7 +219,7 @@ and the thread as in the include file .Aq Pa sys/proc.h : .Bd -literal PS_CONTROLT 0x2 process has a controlling terminal -P_SIGSUSPEND 0x8 need to restore before-suspend mask +P_NOCLDSTOP 0x8 no SIGCHLD when children stop PS_PPWAIT 0x10 parent is waiting for child to exec/exit P_PROFIL 0x20 process has started profiling @@ -234,13 +234,14 @@ P_TRACED 0x800 process is being traced P_WAITED 0x1000 debugging process has waited for child P_WEXIT 0x2000 working on exiting -PS_EXEC 0x4000 process called exec(3) +P_EXEC 0x4000 process called exec(3) P_OWEUPC 0x8000 owe process an addupc() call at next ast .\" the routine addupc is not documented in the man pages PS_ISPWAIT 0x10000 is parent of PPWAIT child P_SSTEP 0x20000 process needs single-step fixup PS_SUGIDEXEC 0x40000 last exec(3) was set[ug]id +P_NOCLDWAIT 0x80000 let pid 1 wait for my children P_NOZOMBIE 0x100000 pid 1 waits for me instead of dad P_INEXEC 0x200000 process is doing an exec right now P_SYSTRACE 0x400000 process system call tracing is active |