task: Implement new process state

Added "Frozen" for vfork implementation.
This commit is contained in:
EnderIce2
2024-10-20 03:00:34 +03:00
parent 53360c10e2
commit f57ad7fc81
4 changed files with 20 additions and 1 deletions

View File

@ -525,6 +525,7 @@ nsa void DisplayProcessScreen(CPU::ExceptionFrame *Frame, bool IgnoreReady = tru
"35m", // Core dump
"1;31m", // Zombie
"31m", // Terminated
"1;33m", // Frozen
};
const char *StatusString[] = {
@ -539,6 +540,7 @@ nsa void DisplayProcessScreen(CPU::ExceptionFrame *Frame, bool IgnoreReady = tru
"CRD", // Core dump
"ZMB", // Zombie
"TRM", // Terminated
"FRZ", // Frozen
};
if (!TaskManager)