Send end of interrupt signal

This commit is contained in:
Philipp Oppermann
2019-01-25 14:09:47 +01:00
parent 4060ac558c
commit 1ea8cf6ed1

View File

@@ -50,4 +50,5 @@ extern "x86-interrupt" fn double_fault_handler(
extern "x86-interrupt" fn timer_interrupt_handler(_stack_frame: &mut ExceptionStackFrame) { extern "x86-interrupt" fn timer_interrupt_handler(_stack_frame: &mut ExceptionStackFrame) {
print!("."); print!(".");
unsafe { PICS.lock().notify_end_of_interrupt(TIMER_INTERRUPT_ID) }
} }