1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! Global handlers that have several purposes and doesn't belong in 1 place specifically

use crate::{
    cpu::idt::InterruptAllSavedState,
    devices::{clock, keyboard_mouse},
    io::console,
    process::scheduler,
};

use super::apic;

pub extern "cdecl" fn apic_timer_handler(all_state: &mut InterruptAllSavedState) {
    // make sure its initialized
    clock::clocks().tick_system_time();
    // flush log file if needed
    console::tracing::flush_log_file();
    // trigger poll if there is any events
    keyboard_mouse::poll_events();

    scheduler::yield_current_if_any(all_state);
    apic::return_from_interrupt();
}