mirror of
https://github.com/rcore-os/rCore-Tutorial-v3.git
synced 2024-11-30 05:13:34 +04:00
10 lines
328 B
Rust
10 lines
328 B
Rust
|
#[panic_handler]
|
||
|
fn panic_handler(panic_info: &core::panic::PanicInfo) -> ! {
|
||
|
let err = panic_info.message().unwrap();
|
||
|
if let Some(location) = panic_info.location() {
|
||
|
println!("Panicked at {}:{}, {}", location.file(), location.line(), err);
|
||
|
} else {
|
||
|
println!("Panicked: {}", err);
|
||
|
}
|
||
|
loop {}
|
||
|
}
|