(info: &PanicInfo)
| 27 | |
| 28 | #[panic_handler] |
| 29 | fn panic(info: &PanicInfo) -> ! { |
| 30 | blog_os::test_panic_handler(info) |
| 31 | } |
| 32 | |
| 33 | // Custom interrupt table, replacing the double fault handler |
| 34 | // with one which exits from QEMU |
nothing calls this directly
no test coverage detected