From a5ac40758b0500037c5b8f5fc5d15b42e76ee909 Mon Sep 17 00:00:00 2001 From: Alastair Poole Date: Wed, 3 Mar 2021 08:08:20 +0000 Subject: [PATCH] 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