1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Split extfs frontends into their own files.

This commit is contained in:
Jonas 'Sortie' Termansen 2015-01-30 16:28:03 +01:00
parent de21e9c8e2
commit 26336de7ff
7 changed files with 1417 additions and 1244 deletions

View file

@ -27,6 +27,7 @@
#include <stddef.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
#include "block.h"
#include "device.h"
@ -52,6 +53,7 @@ Device::~Device()
Sync();
while ( mru_block )
delete mru_block;
close(fd);
}
Block* Device::GetBlock(uint32_t block_id)