Revert "新的内存管理模块 (#301)" (#302)

This reverts commit d8ad0a5e77.
This commit is contained in:
LoGin
2023-07-22 16:24:55 +08:00
committed by GitHub
parent d8ad0a5e77
commit bb5f098a86
124 changed files with 5151 additions and 8278 deletions

View File

@ -4,7 +4,6 @@ pub mod context;
pub mod cpu;
pub mod fpu;
pub mod interrupt;
pub mod libs;
pub mod mm;
pub mod msi;
pub mod pci;
@ -12,9 +11,4 @@ pub mod rand;
pub mod sched;
pub mod syscall;
pub use self::pci::pci::X86_64PciArch as PciArch;
/// 导出内存管理的Arch结构体
pub use self::mm::X86_64MMArch as MMArch;
pub use interrupt::X86_64InterruptArch as CurrentIrqArch;