1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-26 01:55:08 +00:00

Kernel: Port wait to ThreadBlocker

This commit is contained in:
Robin Burchell 2019-07-18 18:05:19 +02:00 committed by Andreas Kling
parent 4f9ae9b970
commit 782e4ee6e1
4 changed files with 43 additions and 31 deletions

View file

@ -162,8 +162,6 @@ const char* to_string(Thread::State state)
return "Skip1";
case Thread::Skip0SchedulerPasses:
return "Skip0";
case Thread::BlockedWait:
return "Wait";
case Thread::BlockedSignal:
return "Signal";
case Thread::BlockedLurking: