starry_core/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
//! The core functionality of a monolithic kernel, including loading user
//! programs and managing processes.

#![no_std]
#![warn(missing_docs)]

#[macro_use]
extern crate axlog;
extern crate alloc;

pub mod mm;
pub mod task;
mod time;