From: Alan Cox Date: Mon, 5 Jun 2017 20:35:19 +0000 (+0100) Subject: libc: add the new process state even though it's not visible to user X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=a08be48a9690e349c13f86c21a518aba112b09bf;p=FUZIX.git libc: add the new process state even though it's not visible to user --- diff --git a/Library/include/proc.h b/Library/include/proc.h index 7328901f..3deeb8b7 100644 --- a/Library/include/proc.h +++ b/Library/include/proc.h @@ -13,6 +13,7 @@ #define P_STOPPED 4 /* Stopped waiting for SIGCONT */ #define P_FORKING 5 /* In process of forking; do not mess with */ #define P_ZOMBIE 6 /* Exited. */ +#define P_NOSLEEP 7 /* Internal no-sleep state, never visible to ps */ /* Process table entry */