burritos/src/kernel/mod.rs
Quentin Legot 977cb2bf96 kernel now build
I commented out semaphore code too cause it need to be updated
and having some error cause the compiler to not check for borrow errors
2023-03-16 14:52:53 +01:00

7 lines
106 B
Rust

mod process;
pub mod thread;
pub mod mgerror;
pub mod system;
mod ucontext;
mod synch;
mod thread_manager;