1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! This module provides the process management API for the operating system.

#![cfg_attr(not(test), no_std)]
mod api;
pub use api::*;
mod process;
pub use process::{Process, PID2PC, TID2TASK};

pub mod flags;
pub mod futex;
pub mod link;
mod stdio;

mod fd_manager;

pub mod signal;