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

Kernel+LibC: Implement fsync

This commit is contained in:
TheFightingCatfish 2021-09-11 23:28:59 -04:00 committed by Andreas Kling
parent fd3735199b
commit a81b21c1a7
13 changed files with 51 additions and 6 deletions

View file

@ -383,6 +383,12 @@ KResult OpenFileDescription::truncate(u64 length)
return m_file->truncate(length);
}
KResult OpenFileDescription::sync()
{
MutexLocker locker(m_lock);
return m_file->sync();
}
bool OpenFileDescription::is_fifo() const
{
return m_file->is_fifo();