Merge branch 'post-10' into post-11

This commit is contained in:
Philipp Oppermann
2025-01-15 19:58:30 +01:00

View File

@@ -12,7 +12,7 @@ lazy_static! {
const STACK_SIZE: usize = 4096 * 5;
static mut STACK: [u8; STACK_SIZE] = [0; STACK_SIZE];
let stack_start = VirtAddr::from_ptr(unsafe { &STACK });
let stack_start = VirtAddr::from_ptr(&raw const STACK);
let stack_end = stack_start + STACK_SIZE;
stack_end
};