1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:27:44 +00:00

Use FileHandle from VFS.

This commit is contained in:
Andreas Kling 2018-10-18 10:28:09 +02:00
parent e86cadc7af
commit 89851a9ded
4 changed files with 24 additions and 105 deletions

View file

@ -57,7 +57,6 @@ public:
const FarPtr& farPtr() const { return m_farPtr; }
FileHandle* fileHandleIfExists(int fd);
FileHandle* createFileHandle();
bool acceptsMessageFrom(Task&);
@ -118,7 +117,7 @@ private:
DWORD m_wakeupTime { 0 };
TSS32 m_tss;
Descriptor* m_ldtEntries { nullptr };
Vector<FileHandle*> m_fileHandles;
Vector<OwnPtr<FileHandle>> m_fileHandles;
RingLevel m_ring { Ring0 };
int m_error { 0 };
};