Remove deadlock provoking code again

This reverts commit 1a39774ead.
This commit is contained in:
Philipp Oppermann
2019-01-25 14:14:45 +01:00
parent 5efcecc2f2
commit 599a643d97

View File

@@ -18,10 +18,7 @@ pub extern "C" fn _start() -> ! {
x86_64::instructions::interrupts::enable(); x86_64::instructions::interrupts::enable();
println!("It did not crash!"); println!("It did not crash!");
loop { loop {}
use blog_os::print;
print!("-");
}
} }
/// This function is called on panic. /// This function is called on panic.