mirror of
https://github.com/XunilGroup/XunilOS.git
synced 2026-06-02 12:44:24 +02:00
17f2a3c7e4
(nothing yet) by stubbing lots of functions and modules, make the frame allocator and heap multiarch, make kernel panic print inside of serial on x86_64
4 lines
171 B
Rust
4 lines
171 B
Rust
use crate::{mm::heap::LinkedListAllocator, util::Locked};
|
|
#[global_allocator]
|
|
pub static ALLOCATOR: Locked<LinkedListAllocator> = Locked::new(LinkedListAllocator::new());
|