Esempio n. 1
0
status_t
Inode::Sync()
{
	if (!IsFileCacheDisabled())
		return file_cache_sync(fCache);

	return B_OK;
}
Esempio n. 2
0
status_t
Inode::Sync()
{
	if (HasFileCache())
		return file_cache_sync(fCache);

	return B_OK;
}