(stack_frame: InterruptStackFrame)
| 175 | static WAKER: AtomicWaker = AtomicWaker::new(); |
| 176 | |
| 177 | extern "x86-interrupt" fn lapic_timer2(stack_frame: InterruptStackFrame) { |
| 178 | log::info!("timer2"); |
| 179 | |
| 180 | unsafe { |
| 181 | // crate::local_apic::LocalApic.get().unwrap().eoi(); |
| 182 | }; |
| 183 | } |
| 184 | pub fn init_idt() { |
| 185 | IDT.load(); |
| 186 | } |
nothing calls this directly
no outgoing calls
no test coverage detected