From: Alan Cox Date: Sun, 24 May 2015 21:56:34 +0000 (+0100) Subject: ps: Use "asleep" not "sleeping" so it fits X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=8c6a3037deff8088b4b600c6daae5bc8266d759d;p=FUZIX.git ps: Use "asleep" not "sleeping" so it fits This will do for now until it gets rewritten to provide the expected sys5 layout --- diff --git a/Applications/util/ps.c b/Applications/util/ps.c index 349bc256..4131b891 100644 --- a/Applications/util/ps.c +++ b/Applications/util/ps.c @@ -20,8 +20,8 @@ char *mapstat(char s) case P_FORKING: return "Forking"; case P_RUNNING: return "Running"; case P_READY: return "Ready"; - case P_SLEEP: - case P_XSLEEP: return "Sleeping"; + case P_SLEEP: + case P_XSLEEP: return "Asleep"; case P_PAUSE: return "Paused"; case P_WAIT: return "Waiting"; }