mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-09 08:33:28 +02:00
Work on POSIX-like read() and lseek() support.
This commit is contained in:
Notes:
sideshowbarker
2024-07-19 18:48:17 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/c94044a04a0
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user