From 8c6a3037deff8088b4b600c6daae5bc8266d759d Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 24 May 2015 22:56:34 +0100 Subject: [PATCH] ps: Use "asleep" not "sleeping" so it fits This will do for now until it gets rewritten to provide the expected sys5 layout --- Applications/util/ps.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; } -- 2.34.1