From 9ed39dc5789a637db3ad4b22aff4c36e63e9c476 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Fri, 28 Nov 2014 11:57:46 +0100 Subject: [PATCH] TODOs --- src/fspp/impl/Filesystem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fspp/impl/Filesystem.h b/src/fspp/impl/Filesystem.h index 9547c867..f4de060d 100644 --- a/src/fspp/impl/Filesystem.h +++ b/src/fspp/impl/Filesystem.h @@ -22,8 +22,8 @@ public: virtual void ftruncate(int descriptor, off_t size) = 0; virtual int read(int descriptor, void *buf, size_t count, off_t offset) = 0; virtual void write(int descriptor, const void *buf, size_t count, off_t offset) = 0; - //TODO Unit-Tests for all functions below virtual void fsync(int descriptor) = 0; + //TODO Unit-Tests for all functions below virtual void fdatasync(int descriptor) = 0; virtual void access(const boost::filesystem::path &path, int mask) = 0; virtual void mkdir(const boost::filesystem::path &path, mode_t mode) = 0;