[thin_check (rust)] rename block_manager.rs -> io_engine.rs
This commit is contained in:
parent
fd0c0ffc1d
commit
08e3ea948e
@ -15,7 +15,7 @@ extern crate quickcheck;
|
||||
#[cfg(test)]
|
||||
extern crate quickcheck_macros;
|
||||
|
||||
pub mod block_manager;
|
||||
pub mod io_engine;
|
||||
pub mod cache;
|
||||
pub mod checksum;
|
||||
pub mod file_utils;
|
||||
|
@ -3,7 +3,7 @@ use fixedbitset::FixedBitSet;
|
||||
use nom::{number::complete::*, IResult};
|
||||
use std::sync::{Arc, Mutex};
|
||||
|
||||
use crate::block_manager::*;
|
||||
use crate::io_engine::*;
|
||||
use crate::checksum;
|
||||
|
||||
// FIXME: check that keys are in ascending order between nodes.
|
||||
|
@ -2,7 +2,7 @@ use anyhow::{anyhow, Result};
|
||||
use nom::{number::complete::*, IResult};
|
||||
use std::sync::{Arc, Mutex};
|
||||
|
||||
use crate::block_manager::*;
|
||||
use crate::io_engine::*;
|
||||
use crate::pdata::btree::Unpack;
|
||||
|
||||
//------------------------------------------
|
||||
|
@ -7,7 +7,7 @@ use std::sync::{Arc, Mutex};
|
||||
use std::time::Instant;
|
||||
use threadpool::ThreadPool;
|
||||
|
||||
use crate::block_manager::{AsyncIoEngine, Block, IoEngine};
|
||||
use crate::io_engine::{AsyncIoEngine, Block, IoEngine};
|
||||
use crate::checksum;
|
||||
use crate::pdata::btree::{unpack, BTreeWalker, Node, NodeVisitor, Unpack};
|
||||
use crate::pdata::space_map::*;
|
||||
|
@ -1,4 +1,4 @@
|
||||
use crate::block_manager::*;
|
||||
use crate::io_engine::*;
|
||||
use anyhow::{anyhow, Result};
|
||||
use nom::{bytes::complete::*, number::complete::*, IResult};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user