@ -133,7 +133,7 @@ impl MockPageTable {
#[cfg(test)]
mod test {
use super::*;
use alloc::arc::Arc;
use alloc::sync::Arc;
use core::cell::RefCell;
#[test]
@ -1,5 +1,5 @@
use super::Swapper;
use alloc::btree_map::BTreeMap;
use alloc::collections::BTreeMap;
use core::mem::uninitialized;
const PAGE_SIZE: usize = 4096;
@ -135,7 +135,7 @@ impl<T: PageTable, M: SwapManager, S: Swapper> DerefMut for SwapExt<T, M, S> {
use super::mock_swapper::MockSwapper;
use alloc::{arc::Arc, boxed::Box};
use alloc::{sync::Arc, boxed::Box};
use paging::MockPageTable;