We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bdd363 commit a480b13Copy full SHA for a480b13
kernel/src/lib.rs
@@ -42,8 +42,8 @@ pub mod memory;
42
pub mod multitasking;
43
pub mod pci;
44
pub mod serial;
45
-pub mod structures;
46
pub mod time;
+pub mod utils;
47
48
lazy_static! {
49
#[doc(hidden)]
kernel/src/memory/pmm/bitmap.rs
@@ -3,7 +3,7 @@
3
4
use crate::memory::pmm::boot_info::BootInfoFrameAllocator;
5
use crate::println;
6
-use crate::structures::bitmap::Bitmap;
+use crate::utils::bitmap::Bitmap;
7
use alloc::vec::Vec;
8
use bootloader::bootinfo::{MemoryRegion, MemoryRegionType};
9
use core::slice::Iter;
kernel/src/structures/bitmap.rs renamed to kernel/src/utils/bitmap.rs
kernel/src/structures/lazy.rs renamed to kernel/src/utils/lazy.rs
kernel/src/structures/mod.rs renamed to kernel/src/utils/mod.rs
kernel/src/structures/once.rs renamed to kernel/src/utils/once.rs
0 commit comments