starry-kernel 0.2.0-preview.1

Core kernel library for Starry OS, providing Linux-compatible syscall implementations
1
2
3
4
5
6
7
8
//! User address space management and user-space memory access.

mod access;
mod aspace;
mod io;
mod loader;

pub use self::{access::*, aspace::*, io::*, loader::*};