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:
parent
e86cadc7af
commit
89851a9ded
4 changed files with 24 additions and 105 deletions
|
@ -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 };
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue