Kernel documentation. Still need to do thread.rs

This commit is contained in:
Rémi Rativel
2023-05-14 23:51:15 +02:00
parent 2f38edee70
commit e430a62c35
5 changed files with 44 additions and 7 deletions

View File

@ -1,3 +1,9 @@
//! # Kernel
//!
//! This module contains all the tool required for the kernel to work.
//!
//! Currently it contains the scheduling and synchroisation tools, but it will contains the tools
//! required Memory gestion, Files gestion and peripheral pilots.
pub mod process;
pub mod thread;
pub mod mgerror;