git-svn-id: https://profuse.googlecode.com/svn/branches/v2@196 aa027e90-d47c-11dd-86d7-074df07e0730

This commit is contained in:
ksherlock
2009-12-21 13:57:48 +00:00
parent 9bca60e977
commit 58ffa151e3
7 changed files with 438 additions and 11 deletions

View File

@@ -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 -