You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
389 B
21 lines
389 B
#![cfg_attr(not(test), no_std)]
|
|
#![feature(alloc)]
|
|
#![feature(const_fn)]
|
|
#![feature(linkage)]
|
|
#![feature(nll)]
|
|
#![feature(vec_resize_default)]
|
|
#![feature(asm)]
|
|
#![feature(exact_size_is_empty)]
|
|
|
|
extern crate alloc;
|
|
|
|
mod process_manager;
|
|
mod processor;
|
|
pub mod scheduler;
|
|
pub mod thread;
|
|
mod event_hub;
|
|
mod interrupt;
|
|
|
|
pub use crate::process_manager::*;
|
|
pub use crate::processor::Processor;
|