mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 11:15:07 +00:00
Rename FileDescriptor::has_data_available_for_reading() -> can_read().
This commit is contained in:
parent
a8baee4dcd
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