mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
Rename FileDescriptor::has_data_available_for_reading() -> can_read().
This commit is contained in:
parent
a8baee4dcd
commit
8ad2dfb6e1
Notes:
sideshowbarker
2024-07-19 16:01:46 +09:00
Author: https://github.com/awesomekling
Commit: 8ad2dfb6e1
4 changed files with 6 additions and 6 deletions
|
|
@ -176,7 +176,7 @@ bool FileDescriptor::can_write(Process& process)
|
|||
return true;
|
||||
}
|
||||
|
||||
bool FileDescriptor::has_data_available_for_reading(Process& process)
|
||||
bool FileDescriptor::can_read(Process& process)
|
||||
{
|
||||
if (is_fifo()) {
|
||||
ASSERT(fifo_direction() == FIFO::Reader);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue