Compare commits

...

7 Commits

Author SHA1 Message Date
Philipp Oppermann
4f6558c021 Merge branch 'post-10' into post-11 2025-01-15 19:58:30 +01:00
Philipp Oppermann
f63e0dacca Merge branch 'post-09' into post-10 2025-01-15 19:58:30 +01:00
Philipp Oppermann
bb3beb22da Merge branch 'post-08' into post-09 2025-01-15 19:58:30 +01:00
Philipp Oppermann
b20e62e86b Merge branch 'post-07' into post-08 2025-01-15 19:58:30 +01:00
Philipp Oppermann
8d067be8ac Merge branch 'post-06' into post-07 2025-01-15 19:58:30 +01:00
Philipp Oppermann
aa9d0fff74 Code: Use new &raw const operator instead of unsafe {& _} 2025-01-15 19:58:23 +01:00
Philipp Oppermann
9ea911b0bb Remove stable const_mut_refs feature 2025-01-15 19:41:40 +01:00
2 changed files with 1 additions and 2 deletions

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
};

View File

@@ -2,7 +2,6 @@
#![cfg_attr(test, no_main)]
#![feature(custom_test_frameworks)]
#![feature(abi_x86_interrupt)]
#![feature(const_mut_refs)]
#![test_runner(crate::test_runner)]
#![reexport_test_harness_main = "test_main"]