//! # 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; pub mod system; pub mod synch; mod thread_manager; pub mod exception;