mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 05:08:56 +00:00
Kernel: Add a new block state for accept() on a blocking socket
Rather than asserting, which really ruins everyone's day.
This commit is contained in:
committed by
Andreas Kling
parent
79a6312c8f
commit
f2fdac789c
@@ -179,6 +179,8 @@ const char* to_string(Thread::State state)
|
||||
return "Connect";
|
||||
case Thread::BlockedReceive:
|
||||
return "Receive";
|
||||
case Thread::BlockedAccept:
|
||||
return "Accepting";
|
||||
case Thread::BlockedCondition:
|
||||
return "Condition";
|
||||
case Thread::__Begin_Blocked_States__:
|
||||
|
||||
Reference in New Issue
Block a user