(info: &PanicInfo)
| 32 | use core::panic::PanicInfo; |
| 33 | #[panic_handler] |
| 34 | pub fn panic(info: &PanicInfo) -> ! { |
| 35 | debug_println!("User panic: {}", info); |
| 36 | syscalls::thread_exit(); |
| 37 | } |
| 38 | |
| 39 | // User program entry point |
| 40 | #[cfg(not(test))] |
nothing calls this directly
no test coverage detected