Rename FileHandle to FileDescriptor.

This commit is contained in:
Andreas Kling 2018-11-07 11:37:54 +01:00
commit 83172e6a4b
Notes: sideshowbarker 2024-07-19 18:32:36 +09:00
18 changed files with 160 additions and 154 deletions

View file

@ -1,5 +1,5 @@
#include "SyntheticFileSystem.h"
#include "FileHandle.h"
#include "FileDescriptor.h"
#include <AK/StdLib.h>
#ifndef SERENITY
@ -192,7 +192,7 @@ bool SyntheticFileSystem::writeInode(InodeIdentifier, const ByteBuffer&)
return false;
}
Unix::ssize_t SyntheticFileSystem::readInodeBytes(InodeIdentifier inode, Unix::off_t offset, Unix::size_t count, byte* buffer, FileHandle* handle) const
Unix::ssize_t SyntheticFileSystem::readInodeBytes(InodeIdentifier inode, Unix::off_t offset, Unix::size_t count, byte* buffer, FileDescriptor* handle) const
{
InterruptDisabler disabler;