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.
20 lines
364 B
20 lines
364 B
#![cfg_attr(not(test), no_std)]
|
|
#![feature(alloc)]
|
|
#![feature(const_fn)]
|
|
#![feature(linkage)]
|
|
#![feature(vec_resize_default)]
|
|
#![feature(asm)]
|
|
#![feature(exact_size_is_empty)]
|
|
|
|
extern crate alloc;
|
|
|
|
mod interrupt;
|
|
mod processor;
|
|
pub mod scheduler;
|
|
pub mod std_thread;
|
|
mod thread_pool;
|
|
mod timer;
|
|
|
|
pub use crate::processor::Processor;
|
|
pub use crate::thread_pool::*;
|