os/kernel/
mod.rs

1//! 内核模块
2//!
3//! 包含任务调度、系统调用等功能
4//! 以及与 CPU 相关的操作
5//! 实现内核的核心功能
6
7mod cpu;
8mod scheduler;
9mod task;
10mod timer;
11
12pub mod syscall;
13pub mod time;
14
15pub use cpu::*;
16pub use scheduler::*;
17pub use task::*;
18pub use timer::*;