netstar pushed a commit to branch master. http://git.enlightenment.org/apps/evisum.git/commit/?id=a5ac40758b0500037c5b8f5fc5d15b42e76ee909
commit a5ac40758b0500037c5b8f5fc5d15b42e76ee909 Author: Alastair Poole <[email protected]> Date: Wed Mar 3 08:08:20 2021 +0000 process: equality for zombies. Treat all the dead as zombies, and all the zombies as dead. :P --- src/bin/system/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/system/process.c b/src/bin/system/process.c index 24b6201..e27fe47 100644 --- a/src/bin/system/process.c +++ b/src/bin/system/process.c @@ -89,7 +89,7 @@ _states_init(void) _states[SZOMB] = "zombie"; #endif #if defined(__OpenBSD__) - _states[SDEAD] = "dead"; + _states[SDEAD] = "zombie"; _states[SONPROC] = "running"; #endif #endif --
