forked from AbleOS/ableos
make requested changes
This commit is contained in:
parent
53fca04786
commit
f0be41ec49
|
@ -11,7 +11,7 @@ pub fn log(_args: core::fmt::Arguments<'_>) -> core::fmt::Result {
|
|||
panic!()
|
||||
}
|
||||
|
||||
pub fn sloop() -> ! {
|
||||
pub fn spin_loop() -> ! {
|
||||
loop {}
|
||||
}
|
||||
pub fn hardware_random_u64() -> u64 {
|
||||
|
|
|
@ -79,7 +79,7 @@ unsafe extern fn _kernel_start() -> ! {
|
|||
}
|
||||
|
||||
/// Spin loop
|
||||
pub fn sloop() -> ! {
|
||||
pub fn spin_loop() -> ! {
|
||||
loop {
|
||||
unsafe { asm!("wfi") }
|
||||
}
|
||||
|
|
|
@ -46,7 +46,7 @@ pub fn kmain(cmdline: &str, boot_modules: BootModules) -> ! {
|
|||
sched.new_process(boot_modules[1].bytes.clone());
|
||||
|
||||
sched.run();
|
||||
// sloop();
|
||||
// spin_loop();
|
||||
}
|
||||
|
||||
pub static DEVICE_TREE: Lazy<Mutex<DeviceTree>> = Lazy::new(|| {
|
||||
|
|
Loading…
Reference in a new issue