Added empty file_cache_sync().

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10048 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-11-19 20:24:27 +00:00
parent 86c3e70cd9
commit 10b8d84f32
+8
View File
@@ -485,6 +485,14 @@ file_cache_set_size(void *_cacheRef, off_t size)
}
extern "C" status_t
file_cache_sync(void *_cacheRef)
{
// ToDo: implement me!
return B_ERROR;
}
extern "C" status_t
file_cache_read_pages(void *_cacheRef, off_t offset, const iovec *vecs, size_t count, size_t *_numBytes)
{