1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 22:34:59 +00:00

Work on POSIX-like read() and lseek() support.

This commit is contained in:
Andreas Kling 2018-10-14 21:19:27 +02:00
parent 9f9b4a2382
commit c94044a04a
11 changed files with 201 additions and 36 deletions

View file

@ -121,3 +121,9 @@ bool SyntheticFileSystem::writeInode(InodeIdentifier, const ByteBuffer&)
printf("FIXME: Implement SyntheticFileSystem::writeInode().\n");
return false;
}
ssize_t SyntheticFileSystem::readInodeBytes(InodeIdentifier, FileOffset offset, size_t count, byte* buffer) const
{
printf("FIXME: Implement SyntheticFileSystem::readInodeBytes().\n");
return 0;
}