diff options
author | TheFightingCatfish <seekingblues@gmail.com> | 2021-09-11 23:28:59 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-12 11:24:02 +0200 |
commit | a81b21c1a7f80e9e44c87e607049a23e7d9f33fd (patch) | |
tree | 53e49882b19f6b409910e7f6aad81c6c4e4433ba /Kernel/FileSystem/InodeFile.h | |
parent | fd3735199b36e1b9a8776f377f8125bb5c93107f (diff) | |
download | serenity-a81b21c1a7f80e9e44c87e607049a23e7d9f33fd.zip |
Kernel+LibC: Implement fsync
Diffstat (limited to 'Kernel/FileSystem/InodeFile.h')
-rw-r--r-- | Kernel/FileSystem/InodeFile.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/FileSystem/InodeFile.h b/Kernel/FileSystem/InodeFile.h index 8e7dd7cd8d..88588b28e5 100644 --- a/Kernel/FileSystem/InodeFile.h +++ b/Kernel/FileSystem/InodeFile.h @@ -39,6 +39,7 @@ public: virtual String absolute_path(const OpenFileDescription&) const override; virtual KResult truncate(u64) override; + virtual KResult sync() override; virtual KResult chown(OpenFileDescription&, UserID, GroupID) override; virtual KResult chmod(OpenFileDescription&, mode_t) override; |