1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

Rename FileDescriptor::has_data_available_for_reading() -> can_read().

This commit is contained in:
Andreas Kling 2019-01-16 00:47:00 +01:00
parent a8baee4dcd
commit 8ad2dfb6e1
4 changed files with 6 additions and 6 deletions

View file

@ -29,7 +29,7 @@ public:
ssize_t write(Process&, const byte* data, size_t);
int stat(Unix::stat*);
bool has_data_available_for_reading(Process&);
bool can_read(Process&);
bool can_write(Process&);
ssize_t get_dir_entries(byte* buffer, size_t);