Files @ 3a0142804667
Branch filter:

Location: CSY/reowolf/src/runtime2/mod.rs - annotation

3a0142804667 320 B application/rls-services+xml Show Source Show as Raw Download as Raw
MH
WIP on nonblocking before implementing epoll
mod store;
mod runtime;
mod component;
mod communication;
mod scheduler;
mod stdlib;
#[cfg(test)] mod tests;

pub use runtime::Runtime;
pub(crate) use scheduler::SchedulerCtx;
pub(crate) use communication::{
    PortId, PortKind, PortState,
    Message, ControlMessage, SyncMessage, DataMessage,
    SyncRoundDecision
};