Started on inode manager file.

This commit is contained in:
2016-06-27 21:21:01 -05:00
parent c3b9a9e9e0
commit 77059d4cdb
6 changed files with 76 additions and 4 deletions
+2 -1
View File
@@ -9,10 +9,11 @@
#include <ox/fs/filestore.hpp>
using namespace ox::fs;
using namespace ox::std;
template<typename FileStore>
int test() {
const auto size = 65535;
const uint16_t size = ~0;
uint8_t volume[size];
char out[6];
uint32_t err;
+3 -1
View File
@@ -6,12 +6,14 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <ox/fs/filesystem.hpp>
#include <ox/fs/inodemgr.hpp>
using namespace ox::fs;
using namespace ox::std;
template<typename FileSystem>
int test() {
const auto size = 65535;
const uint16_t size = ~0;
uint8_t volume[size];
FileSystem::format(volume, size);
return 0;