mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:57:44 +00:00
Finally unbreak the colonel process and make it the true idle process.
This commit is contained in:
parent
440029c9d1
commit
43f40a3050
4 changed files with 59 additions and 52 deletions
|
@ -43,6 +43,8 @@ public:
|
|||
Invalid = 0,
|
||||
Runnable,
|
||||
Running,
|
||||
ExecPhase1,
|
||||
ExecPhase2,
|
||||
Dead,
|
||||
Forgiven,
|
||||
BeingInspected,
|
||||
|
@ -304,6 +306,8 @@ static inline const char* toString(Process::State state)
|
|||
case Process::Runnable: return "Runnable";
|
||||
case Process::Running: return "Running";
|
||||
case Process::Dead: return "Dead";
|
||||
case Process::ExecPhase1: return "ExecPhase1";
|
||||
case Process::ExecPhase2: return "ExecPhase2";
|
||||
case Process::Forgiven: return "Forgiven";
|
||||
case Process::BlockedSleep: return "Sleep";
|
||||
case Process::BlockedWait: return "Wait";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue