BlockDevice -> DiskDevice.

BlockDevice was the wrong name for this abstraction, since a block device
is a type of file in a unix system, and we should use that name for that
concept in the fs implementation.
This commit is contained in:
Andreas Kling 2018-10-16 11:21:49 +02:00
commit 9cd0a34b5c
Notes: sideshowbarker 2024-07-19 18:47:37 +09:00
12 changed files with 62 additions and 64 deletions

View file

@ -0,0 +1,9 @@
#include "DiskDevice.h"
DiskDevice::DiskDevice()
{
}
DiskDevice::~DiskDevice()
{
}