ostd/arch/x86/kernel/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: MPL-2.0

//! Architecture kernel module.
//
// TODO: The purpose of this module is too ambiguous. We should split it up and move its submodules
// to more suitable locations.

pub(super) mod acpi;
pub(super) mod apic;
pub(super) mod irq;
pub(super) mod tsc;

pub use irq::{IrqChip, MappedIrqLine, IRQ_CHIP};