Kernel: Rename "descriptor" to "description" where appropriate.

Now that FileDescription is called that, variables of that type should not
be called "descriptor". This is kinda wordy but we'll get used to it.
This commit is contained in:
Andreas Kling 2019-06-13 22:03:04 +02:00
commit c1bbd40b9e
Notes: sideshowbarker 2024-07-19 13:37:59 +09:00
17 changed files with 285 additions and 285 deletions

View file

@ -305,10 +305,10 @@ private:
Priority m_priority { NormalPriority };
struct FileDescriptionAndFlags {
operator bool() const { return !!descriptor; }
operator bool() const { return !!description; }
void clear();
void set(Retained<FileDescription>&& d, dword f = 0);
RetainPtr<FileDescription> descriptor;
RetainPtr<FileDescription> description;
dword flags { 0 };
};
Vector<FileDescriptionAndFlags> m_fds;