Kernel: Rename file_description(fd) => open_file_description(fd)

To go with the class rename.
This commit is contained in:
Andreas Kling 2021-09-07 13:41:27 +02:00
commit 213b8868af
Notes: sideshowbarker 2024-07-18 04:31:47 +09:00
24 changed files with 42 additions and 42 deletions

View file

@ -676,7 +676,7 @@ public:
m_fds_metadatas.clear();
}
KResultOr<NonnullRefPtr<OpenFileDescription>> file_description(int fd) const;
KResultOr<NonnullRefPtr<OpenFileDescription>> open_file_description(int fd) const;
private:
OpenFileDescriptions() = default;