ostd 0.17.2

Rust OS framework that facilitates the development of and innovation in OS kernels
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: MPL-2.0

//! The timer support.

use super::trap::TrapFrame;

// TODO: Add LoongArch timer support and call this method.
#[expect(dead_code)]
fn timer_callback(trapframe: &TrapFrame) {
    crate::timer::call_timer_callback_functions(trapframe);
}