starry_core/
lib.rs

1//! The core functionality of a monolithic kernel, including loading user
2//! programs and managing processes.
3
4#![no_std]
5#![warn(missing_docs)]
6
7#[macro_use]
8extern crate axlog;
9extern crate alloc;
10
11pub mod futex;
12pub mod mm;
13pub mod task;
14mod time;