Skip to content

Commit 3b0b70c

Browse files
committed
Moved the common data structures to a utils module
This will allow us to add other, non-structure, code here later. Signed-off-by: SlyMarbo <[email protected]>
1 parent 33f55ec commit 3b0b70c

File tree

6 files changed

+2
-2
lines changed

6 files changed

+2
-2
lines changed

kernel/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ pub mod memory;
4242
pub mod multitasking;
4343
pub mod pci;
4444
pub mod serial;
45-
pub mod structures;
4645
pub mod time;
46+
pub mod utils;
4747

4848
lazy_static! {
4949
#[doc(hidden)]

kernel/src/memory/pmm/bitmap.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
use crate::memory::pmm::boot_info::BootInfoFrameAllocator;
55
use crate::println;
6-
use crate::structures::bitmap::Bitmap;
6+
use crate::utils::bitmap::Bitmap;
77
use alloc::vec::Vec;
88
use bootloader::bootinfo::{MemoryRegion, MemoryRegionType};
99
use core::slice::Iter;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)