(_stackframe: InterruptStackFrame)
| 108 | |
| 109 | |
| 110 | extern "x86-interrupt" fn timer_interrupt_handler(_stackframe: InterruptStackFrame) |
| 111 | { |
| 112 | // print!("."); |
| 113 | unsafe |
| 114 | { |
| 115 | PICS.lock().notify_intrend(IntrIdx::Timer.asu8()); |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | #[test_case] |
| 120 | fn test_breakpnt_exc() |
nothing calls this directly
no test coverage detected