From a08be48a9690e349c13f86c21a518aba112b09bf Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 5 Jun 2017 21:35:19 +0100 Subject: [PATCH] libc: add the new process state even though it's not visible to user --- Library/include/proc.h | 1 + 1 file changed, 1 insertion(+) 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 */ -- 2.34.1