mirror of
https://github.com/ksherlock/profuse.git
synced 2026-03-14 16:16:21 +00:00
git-svn-id: https://profuse.googlecode.com/svn/branches/v2@196 aa027e90-d47c-11dd-86d7-074df07e0730
This commit is contained in:
@@ -54,6 +54,30 @@ AbstractBlockCache *BlockDevice::createBlockCache()
|
||||
return new BlockCache(this);
|
||||
}
|
||||
|
||||
bool BlockDevice::mapped()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void BlockDevice::sync(unsigned block)
|
||||
{
|
||||
sync();
|
||||
}
|
||||
|
||||
void BlockDevice::sync(TrackSector ts)
|
||||
{
|
||||
sync();
|
||||
}
|
||||
|
||||
void *BlockDevice::read(unsigned block)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void *BlockDevice::read(TrackSector ts)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
#pragma mark -
|
||||
|
||||
Reference in New Issue
Block a user