mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 22:38:51 +00:00
Implement a basic way for read() to block.
FileHandle gets a hasDataAvailableForRead() getter. If this returns true in sys$read(), the task will block(BlockedRead) + yield. The fd blocked on is stored in Task::m_fdBlockedOnRead. The scheduler then looks at the state of that fd during the unblock phase. This makes "sh" restful. :^) There's still some problem with the kernel not surviving the colonel task getting scheduled. I need to figure that out and fix it.
This commit is contained in:
parent
ba56f4afde
commit
c6f2890d8e
Notes:
sideshowbarker
2024-07-19 18:38:47 +09:00
Author: https://github.com/awesomekling
Commit: c6f2890d8e
18 changed files with 86 additions and 17 deletions
|
@ -28,6 +28,11 @@ static void mysrand(unsigned seed)
|
|||
}
|
||||
#endif
|
||||
|
||||
bool RandomDevice::hasDataAvailableForRead() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
Unix::ssize_t RandomDevice::read(byte* buffer, Unix::size_t bufferSize)
|
||||
{
|
||||
const int range = 'z' - 'a';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue